home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / ld / dist / ld.current < prev    next >
Encoding:
Text File  |  1990-10-26  |  143.1 KB  |  5,324 lines

  1. /* Linker `ld' for GNU
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by Richard Stallman with some help from Eric Albert.
  19.    Set, indirect, and warning symbol features added by Randy Smith.  */
  20.  
  21. #include <ar.h>
  22. #include <stdio.h>
  23. #include <sys/types.h>
  24. #include <sys/stat.h>
  25. #include <sys/file.h>
  26. #ifndef sony_news
  27. #include <fcntl.h>
  28. #endif
  29.  
  30. #define NO_C_PLUS_PLUS
  31.  
  32. #define TARGET_SUN2             2
  33. #define TARGET_SUN3             3
  34. #define TARGET_SUN4             4
  35. #define TARGET_ALTOS            5
  36. #define TARGET_I386             6   
  37. #define TARGET_HPUX             7
  38. #define TARGET_SONY_NEWS        8
  39. #define TARGET_SEQUENT          9
  40. #define TARGET_VAX              10
  41.  
  42. /*
  43.  * If `TARGET_MACHINE' was not defined on the compiler command line,
  44.  * then set it equal to the host machine.
  45.  */
  46. #ifndef TARGET_MACHINE
  47. #if defined(sun) && defined(sparc)
  48. #define TARGET_MACHINE  TARGET_SUN4
  49. #endif
  50. #if defined(sun) && (defined(m68020) || defined(mc68020))
  51. #define TARGET_MACHINE  TARGET_SUN3
  52. #endif
  53. #if defined(sun) && (defined(m68010) || defined(mc68010))
  54. #define TARGET_MACHINE  TARGET_SUN2
  55. #endif
  56. #if defined(ALTOS)
  57. #define TARGET_MACHINE  TARGET_ALTOS
  58. #endif
  59. #if defined(hpux)
  60. #define TARGET_MACHINE  TARGET_HPUX
  61. #endif
  62. #if defined(is386)
  63. #define TARGET_MACHINE  TARGET_I386
  64. #endif
  65. #if defined(sony_news)
  66. #define TARGET_MACHINE  TARGET_SONY_NEWS
  67. #endif
  68. #if defined(sequent)
  69. #define TARGET_MACHINE  TARGET_SEQUENT
  70. #endif
  71. #if defined(is68k) && !defined(TARGET_MACHINE)
  72. #define TARGET_MACHINE  TARGET_68K
  73. #endif
  74. #endif
  75.  
  76. #ifndef TARGET_MACHINE
  77.     CANNOT COMPILE, NO TARGET MACHINE SPECIFIED
  78. #endif
  79.  
  80. #ifndef BIG_ENDIAN
  81. #define BIG_ENDIAN      4321
  82. #endif
  83. #ifndef LITTLE_ENDIAN
  84. #define LITTLE_ENDIAN   1234
  85. #endif
  86. #ifndef PDP_ENDIAN
  87. /* I think it is unlikely that anybody will try to cross compile
  88.  * to or from a pdp, so only big-endian and little-endian are supported. */
  89. #define PDP_ENDIAN   3412
  90. #endif
  91.  
  92. #if TARGET_MACHINE==TARGET_SUN4         || \
  93.     TARGET_MACHINE==TARGET_SUN3         || \
  94.     TARGET_MACHINE==TARGET_SUN2         || \
  95.     TARGET_MACHINE==TARGET_ALTOS        || \
  96.     TARGET_MACHINE==TARGET_HPUX         || \
  97.     TARGET_MACHINE==TARGET_SONY_NEWS    || \
  98.     TARGET_MACHINE==TARGET_68K
  99. #define TARGET_BYTE_ORDER       BIG_ENDIAN
  100. #endif
  101.  
  102. #if TARGET_MACHINE==TARGET_VAX          || \
  103.     TARGET_MACHINE==TARGET_I386         || \
  104.     TARGET_MACHINE==TARGET_SEQUENT
  105. #define TARGET_BYTE_ORDER       LITTLE_ENDIAN
  106. #endif
  107.  
  108. #if TARGET_MACHINE==TARGET_SUN3
  109. #define TARGET_PAGE_SIZE    0x2000
  110. #endif
  111.  
  112. #if defined(sparc)      || \
  113.     defined(m68000)     || \
  114.     defined(mc68000)    || \
  115.     defined(m68010)     || \
  116.     defined(mc68010)    || \
  117.     defined(m68020)     || \
  118.     defined(mc68020)    || \
  119.     defined(is68k)      || \
  120.     defined(hpux)       || \
  121.     defined(sony_news)
  122. #define HOST_BYTE_ORDER     BIG_ENDIAN
  123. #endif
  124.  
  125. #if defined(vax)        || \
  126.     defined(is386)      || \
  127.     defined(ds3100)     || \
  128.     defined(sequent)
  129. #define HOST_BYTE_ORDER     LITTLE_ENDIAN
  130. #endif
  131.  
  132. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  133. static void fix_byte_order();
  134. static void fix_exec_header_byte_order();
  135. static void fix_symbol_byte_order();
  136. static void target_to_host_reloc_byte_order();
  137. static void host_to_target_reloc_byte_order();
  138. static void fix_symbol_root_byte_order();
  139. #endif
  140.  
  141. #ifdef COFF_ENCAPSULATE
  142. #include "a.out.encap.h"
  143. #else
  144. #ifdef sprite
  145. #if TARGET_MACHINE==TARGET_SUN4
  146. #include <sun4.md/a.out.h>
  147. #elif TARGET_MACHINE==TARGET_SUN3
  148. #include <sun3.md/a.out.h>
  149. #elif TARGET_MACHINE==TARGET_SEQUENT
  150. #include <symm.md/a.out.h>
  151. #else
  152.     no a.out.h specified
  153. #endif
  154. #else
  155. #include <a.out.h>
  156. #endif
  157. #endif
  158.  
  159. #ifdef sprite
  160. #undef NEW_SEG_SIZE
  161. #if TARGET_MACHINE==TARGET_SUN4
  162. #define NEW_SEG_SIZE    0x40000
  163. #endif
  164. #if TARGET_MACHINE==TARGET_SUN3
  165. #define NEW_SEG_SIZE    0x20000
  166. #endif
  167. #endif  /* sprite */
  168.  
  169. #ifndef N_SET_MAGIC
  170. #define N_SET_MAGIC(exec, val)  ((exec).a_magic = val)
  171. #endif
  172.  
  173. /* If compiled with GNU C, use the built-in alloca */
  174. #ifdef __GNUC__
  175. #define alloca __builtin_alloca
  176. #endif
  177.  
  178. /* Always use the GNU version of debugging symbol type codes, if possible.  */
  179.  
  180. #include "stab.h"
  181. #define CORE_ADDR unsigned long    /* For symseg.h */
  182. #include "symseg.h"
  183.  
  184. #ifdef USG
  185. #include <string.h>
  186. #else
  187. #include <strings.h>
  188. #endif
  189.  
  190. /* Determine whether we should attempt to handle (minimally)
  191.    N_BINCL and N_EINCL.  */
  192.  
  193. #if defined (__GNU_STAB__) || defined (N_BINCL)
  194. #define HAVE_SUN_STABS
  195. #endif
  196.  
  197. #define min(a,b) ((a) < (b) ? (a) : (b))
  198.  
  199. /* Macro to control the number of undefined references printed */
  200. #define MAX_UREFS_PRINTED    10
  201.  
  202. /* Size of a page; obtained from the operating system.  */
  203.  
  204. int page_size;
  205.  
  206. /* Name this program was invoked by.  */
  207.  
  208. char *progname;
  209.  
  210. /* System dependencies */
  211.  
  212. /* Define this if names etext, edata and end should not start with `_'.  */
  213. /* #define nounderscore 1 */
  214.  
  215. /* Define NON_NATIVE if using BSD or pseudo-BSD file format on a system
  216.    whose native format is different.  */
  217. /* #define NON_NATIVE */
  218.  
  219. /* Define this to specify the default executable format.  */
  220.  
  221. #if TARGET_MACHINE==TARGET_HPUX
  222. #define DEFAULT_MAGIC NMAGIC  /* hpux bugs screw ZMAGIC */
  223. #endif
  224.  
  225. #ifndef DEFAULT_MAGIC
  226. #define DEFAULT_MAGIC ZMAGIC
  227. #endif
  228.  
  229. /* Ordinary 4.3bsd lacks these macros in a.out.h.  */
  230.  
  231. #ifndef N_TXTADDR
  232. #if TARGET_MACHINE==TARGET_VAX || TARGET_MACHINE==TARGET_SONY_NEWS
  233. #define N_TXTADDR(X) 0
  234. #endif
  235. #if TARGET_MACHINE==TARGET_SUN3 || TARGET_MACHINE==TARGET_SUN2
  236. #define N_TXTADDR(x)  (sizeof (struct exec))
  237. #endif
  238. #if TARGET_MACHINE==TARGET_SEQUENT
  239. #define    N_TXTADDR(x) (N_ADDRADJ(x))
  240. #endif
  241. #endif
  242.  
  243. #ifndef N_DATADDR
  244. #if TARGET_MACHINE==TARGET_VAX || TARGET_MACHINE==TARGET_SONY_NEWS
  245. #define N_DATADDR(x) \
  246.     (((x).a_magic==OMAGIC)? (N_TXTADDR(x)+(x).a_text) \
  247.     : (page_size+((N_TXTADDR(x)+(x).a_text-1) & ~(page_size-1))))
  248. #endif
  249. #if TARGET_MACHINE==TARGET_SUN3 || TARGET_MACHINE==TARGET_SUN2
  250. #define SEGMENT_SIZE 0x20000
  251. #define N_DATADDR(x) \
  252.     (((x).a_magic==OMAGIC)? (N_TXTADDR(x)+(x).a_text) \
  253.      : (SEGMENT_SIZE + ((N_TXTADDR(x)+(x).a_text-1) & ~(SEGMENT_SIZE-1))))
  254. #endif
  255. #if TARGET_MACHINE==TARGET_SEQUENT
  256. #define N_DATADDR(x) \
  257.     (((x).a_magic==OMAGIC)? (N_TXTADDR(x)+(x).a_text) \
  258.     : (page_size+(((x).a_text-1) & ~(page_size-1))))
  259. #endif
  260. #endif
  261.  
  262. /* Define how to initialize system-dependent header fields.  */
  263. #if TARGET_MACHINE==TARGET_SUN4
  264. #define INITIALIZE_HEADER \
  265.   {outheader.a_machtype = M_SPARC; outheader.a_toolversion = 1;}
  266. #endif
  267. #if TARGET_MACHINE==TARGET_SUN2
  268. #define INITIALIZE_HEADER outheader.a_machtype = M_68010
  269. #endif
  270. #if TARGET_MACHINE==TARGET_SUN3
  271. #define INITIALIZE_HEADER outheader.a_machtype = M_68020
  272. #endif
  273. #if TARGET_MACHINE==TARGET_ALTOS
  274. #define INITIALIZE_HEADER N_SET_MACHTYPE (outheader, M_68020)
  275. #endif
  276. #if TARGET_MACHINE==TARGET_HPUX
  277. #define INITIALIZE_HEADER N_SET_MACHTYPE (outheader, HP9000S200_ID)
  278. #endif
  279. #if TARGET_MACHINE==TARGET_I386
  280. #define INITIALIZE_HEADER N_SET_MACHTYPE (outheader, M_386)
  281. #endif
  282. #if TARGET_MACHINE==TARGET_68K
  283. #define INITIALIZE_HEADER outheader.a_machtype = 0;  
  284. /* This enables code to take care of an ugly hack in the ISI OS.
  285.    If a symbol beings with _$, then the object file is included only
  286.    if the rest of the symbol name has been referenced. */
  287. #define DOLLAR_KLUDGE
  288. #endif
  289. #if TARGET==TARGET_SEQUENT
  290. /* This is all stuff needed to make standalone binaries */
  291. static struct gdtbl gdt_filler = {
  292.     { 0x0000FFFF, 0x00CF9A00 },    /* code entry */
  293.     { 0x0000FFFF, 0x00CF9200 },    /* data entry */
  294.     { 0x00180017, 0x00000000 },    /* 6 byte descriptor */
  295. };
  296.  
  297. static char instr[] = {
  298.     0x67, 0x66, 0x0f, 0x01, 0x15, 0x30, 0x00, 0x00, 0x00,
  299.     0x0f, 0x20, 0xc3,
  300.     0x80, 0xcb, 0x01,
  301.     0x0f, 0x22, 0xc3,
  302.     0xea, 0x5b, 0x00, 0x08, 0x00,
  303.     0xbb, 0x10, 0x00, 0x00, 0x00,
  304.     0x8e, 0xdb,
  305.     0x8e, 0xd3,
  306.     0x8e, 0xc3,
  307.     0xff, 0x25, 0x6c, 0x00, 0x00, 0x00,
  308.     0x00, 0x00, 0x00, 0x00, };
  309. #endif   
  310.  
  311. /*
  312.  * Alloca include.
  313.  */
  314. #if defined(sun) && defined(sparc) && !defined(__GNUC__)
  315. #include "alloca.h"
  316. #endif
  317.  
  318. #ifndef L_SET
  319. #define L_SET 0
  320. #endif
  321.  
  322. /*
  323.  * Ok.  Following are the relocation information macros.  If your
  324.  * system cannot use the default set (below), you must define all of these:
  325.  
  326.  *   relocation_info: This must be typedef'd (or #define'd) to the type
  327.  * of structure that is stored in the relocation info section of your
  328.  * a.out files.  Often this is defined in the a.out.h for your system.
  329.  *
  330.  *   RELOC_ADDRESS (rval): Offset into the current section of the
  331.  * <whatever> to be relocated.  *Must be an lvalue*.
  332.  *
  333.  *   RELOC_EXTERN_P (rval):  Is this relocation entry based on an
  334.  * external symbol (1), or was it fully resolved upon entering the
  335.  * loader (0) in which case some combination of the value in memory
  336.  * (if RELOC_MEMORY_ADD_P) and the extra (if RELOC_ADD_EXTRA) contains
  337.  * what the value of the relocation actually was.  *Must be an lvalue*.
  338.  *
  339.  *   RELOC_TYPE (rval): For a non-external relocation, this is the
  340.  * segment to relocate for.
  341.  *
  342.  *   RELOC_SYMBOL (rval): For an external relocation, this is the
  343.  * index of its symbol in the symbol table.  *Must be an lvalue*.
  344.  *
  345.  *   RELOC_MEMORY_ADD_P (rval): This should be 1 if the final
  346.  * relocation value output here should be added to memory; 0, if the
  347.  * section of memory described should simply be set to the relocation
  348.  * value.
  349.  *
  350.  *   RELOC_MEMORY_ADD_P (rval): If this is nonzero, the value previously
  351.  * present in the memory location to be relocated is *added*
  352.  * to the relocation value, to produce the final result.
  353.  * Otherwise, the relocation value is stored in the memory location
  354.  * and the value previously found there is ignored.
  355.  * By default, this is always 1.
  356.  *
  357.  *   RELOC_MEMORY_SUB_P (rval): If this is nonzero, the value previously
  358.  * present in the memory location to be relocated is *subtracted*
  359.  * from the relocation value, to produce the final result.
  360.  * By default, this is always 0.
  361.  *
  362.  *   RELOC_ADD_EXTRA (rval): (Optional) This macro, if defined, gives
  363.  * an extra value to be added to the relocation value based on the
  364.  * individual relocation entry.  *Must be an lvalue if defined*.
  365.  *
  366.  *   RELOC_PCREL_P (rval): True if the relocation value described is
  367.  * pc relative.
  368.  *
  369.  *   RELOC_VALUE_RIGHTSHIFT (rval): Number of bits right to shift the
  370.  * final relocation value before putting it where it belongs.
  371.  *
  372.  *   RELOC_TARGET_SIZE (rval): log to the base 2 of the number of
  373.  * bytes of size this relocation entry describes; 1 byte == 0; 2 bytes
  374.  * == 1; 4 bytes == 2, and etc.  This is somewhat redundant (we could
  375.  * do everything in terms of the bit operators below), but having this
  376.  * macro could end up producing better code on machines without fancy
  377.  * bit twiddling.  Also, it's easier to understand/code big/little
  378.  * endian distinctions with this macro.
  379.  *
  380.  *   RELOC_TARGET_BITPOS (rval): The starting bit position within the
  381.  * object described in RELOC_TARGET_SIZE in which the relocation value
  382.  * will go.
  383.  *
  384.  *   RELOC_TARGET_BITSIZE (rval): How many bits are to be replaced
  385.  * with the bits of the relocation value.  It may be assumed by the
  386.  * code that the relocation value will fit into this many bits.  This
  387.  * may be larger than RELOC_TARGET_SIZE if such be useful.
  388.  *
  389.  *
  390.  *        Things I haven't implemented
  391.  *        ----------------------------
  392.  *
  393.  *    Values for RELOC_TARGET_SIZE other than 0, 1, or 2.
  394.  *
  395.  *    Pc relative relocation for External references.
  396.  *
  397.  *
  398.  */
  399.  
  400. #if TARGET_MACHINE==TARGET_SUN4
  401. /* Sparc (Sun 4) macros */
  402. #undef relocation_info
  403. #define relocation_info                    reloc_info_sparc
  404. #define RELOC_ADDRESS(r)        ((r)->r_address)                 
  405. #define RELOC_EXTERN_P(r)               ((r)->r_extern)      
  406. #define RELOC_TYPE(r)                   ((r)->r_index)  
  407. #define RELOC_SYMBOL(r)                 ((r)->r_index)   
  408. #define RELOC_MEMORY_SUB_P(r)        0
  409. #define RELOC_MEMORY_ADD_P(r)           0
  410. #define RELOC_ADD_EXTRA(r)              ((r)->r_addend)       
  411. #define RELOC_PCREL_P(r)                \
  412.     ((int) (r)->r_type >= (int) RELOC_DISP8 && \
  413.      (int) (r)->r_type <= (int) RELOC_WDISP22)
  414. #define RELOC_VALUE_RIGHTSHIFT(r) \
  415.     (reloc_target_rightshift[(int) (r)->r_type])
  416. #define RELOC_TARGET_SIZE(r)            (reloc_target_size[(int) (r)->r_type])
  417. #define RELOC_TARGET_BITPOS(r)          0
  418. #define RELOC_TARGET_BITSIZE(r) \
  419.     (reloc_target_bitsize[(int) (r)->r_type])
  420.  
  421. /* Note that these are very dependent on the order of the enums in
  422.    enum reloc_type (in a.out.h); if they change the following must be
  423.    changed */
  424. /* Also note that the last few may be incorrect; I have no information */
  425. static int reloc_target_rightshift[] = {
  426.   0, 0, 0, 0, 0, 0, 2, 2, 10, 0, 0, 0, 0, 0, 0,
  427. };
  428. static int reloc_target_size[] = {
  429.   0, 1, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  430. };
  431. static int reloc_target_bitsize[] = {
  432.   8, 16, 32, 8, 16, 32, 30, 22, 22, 22, 13, 10, 32, 32, 16,
  433. };
  434.  
  435. #define    MAX_ALIGNMENT    (sizeof (double))
  436.   /* The pagesize on an old sun4 is 0x2000, on sparcStation it is 0x1000.
  437.      If you want to use the same binaries on both, then you need to use
  438.      the larger pagesize. */
  439. #define TARGET_PAGE_SIZE    0x2000
  440. #endif
  441.  
  442. #if TARGET_MACHINE==TARGET_SEQUENT
  443. #define RELOC_ADDRESS(r)        ((r)->r_address)
  444. #define RELOC_EXTERN_P(r)        ((r)->r_extern)
  445. #define RELOC_TYPE(r)        ((r)->r_symbolnum)
  446. #define RELOC_SYMBOL(r)        ((r)->r_symbolnum)
  447. #define RELOC_MEMORY_SUB_P(r)    ((r)->r_bsr)
  448. #define RELOC_MEMORY_ADD_P(r)    1
  449. #undef RELOC_ADD_EXTRA
  450. #define RELOC_PCREL_P(r)        ((r)->r_pcrel || (r)->r_bsr)
  451. #define RELOC_VALUE_RIGHTSHIFT(r)    0
  452. #define RELOC_TARGET_SIZE(r)        ((r)->r_length)
  453. #define RELOC_TARGET_BITPOS(r)    0
  454. #define RELOC_TARGET_BITSIZE(r)    32
  455. #define TARGET_PAGE_SIZE    0x1000
  456. #endif
  457.  
  458. /* Default macros */
  459. #ifndef RELOC_ADDRESS
  460. #define RELOC_ADDRESS(r)        ((r)->r_address)
  461. #define RELOC_EXTERN_P(r)        ((r)->r_extern)
  462. #define RELOC_TYPE(r)        ((r)->r_symbolnum)
  463. #define RELOC_SYMBOL(r)        ((r)->r_symbolnum)
  464. #define RELOC_MEMORY_SUB_P(r)    0
  465. #define RELOC_MEMORY_ADD_P(r)    1
  466. #undef RELOC_ADD_EXTRA
  467. #define RELOC_PCREL_P(r)        ((r)->r_pcrel)
  468. #define RELOC_VALUE_RIGHTSHIFT(r)    0
  469. #define RELOC_TARGET_SIZE(r)        ((r)->r_length)
  470. #define RELOC_TARGET_BITPOS(r)    0
  471. #define RELOC_TARGET_BITSIZE(r)    32
  472. #endif
  473.  
  474. #ifndef MAX_ALIGNMENT
  475. #define    MAX_ALIGNMENT    (sizeof (int))
  476. #endif
  477.  
  478. #ifdef nounderscore
  479. #define LPREFIX '.'
  480. #else
  481. #define LPREFIX 'L'
  482. #endif
  483.  
  484.  
  485. /* Special global symbol types understood by GNU LD.  */
  486.  
  487. /* The following type indicates the definition of a symbol as being
  488.    an indirect reference to another symbol.  The other symbol
  489.    appears as an undefined reference, immediately following this symbol.
  490.  
  491.    Indirection is asymmetrical.  The other symbol's value will be used
  492.    to satisfy requests for the indirect symbol, but not vice versa.
  493.    If the other symbol does not have a definition, libraries will
  494.    be searched to find a definition.
  495.  
  496.    So, for example, the following two lines placed in an assembler
  497.    input file would result in an object file which would direct gnu ld
  498.    to resolve all references to symbol "foo" as references to symbol
  499.    "bar". 
  500.  
  501.     .stabs "_foo",11,0,0,0
  502.     .stabs "_bar",1,0,0,0
  503.  
  504.    Note that (11 == (N_INDR | N_EXT)) and (1 == (N_UNDF | N_EXT)).  */
  505.  
  506. #ifndef N_INDR
  507. #define N_INDR 0xa
  508. #endif
  509.  
  510. /* The following symbols refer to set elements.  These are expected
  511.    only in input to the loader; they should not appear in loader
  512.    output (unless relocatable output is requested).  To be recognized
  513.    by the loader, the input symbols must have their N_EXT bit set.
  514.    All the N_SET[ATDB] symbols with the same name form one set.  The
  515.    loader collects all of these elements at load time and outputs a
  516.    vector for each name.
  517.    Space (an array of 32 bit words) is allocated for the set in the
  518.    data section, and the n_value field of each set element value is
  519.    stored into one word of the array.
  520.    The first word of the array is the length of the set (number of
  521.    elements).  The last word of the vector is set to zero for possible
  522.    use by incremental loaders.  The array is ordered by the linkage
  523.    order; the first symbols which the linker encounters will be first
  524.    in the array.
  525.  
  526.    In C syntax this looks like:
  527.  
  528.     struct set_vector {
  529.       unsigned int length;
  530.       unsigned int vector[length];
  531.       unsigned int always_zero;
  532.     };
  533.  
  534.    Before being placed into the array, each element is relocated
  535.    according to its type.  This allows the loader to create an array
  536.    of pointers to objects automatically.  N_SETA type symbols will not
  537.    be relocated.
  538.  
  539.    The address of the set is made into an N_SETV symbol
  540.    whose name is the same as the name of the set.
  541.    This symbol acts like a N_DATA global symbol
  542.    in that it can satisfy undefined external references.
  543.  
  544.    For the purposes of determining whether or not to load in a library
  545.    file, set element definitions are not considered "real
  546.    definitions"; they will not cause the loading of a library
  547.    member.
  548.  
  549.    If relocatable output is requested, none of this processing is
  550.    done.  The symbols are simply relocated and passed through to the
  551.    output file.
  552.  
  553.    So, for example, the following three lines of assembler code
  554.    (whether in one file or scattered between several different ones)
  555.    will produce a three element vector (total length is five words;
  556.    see above), referenced by the symbol "_xyzzy", which will have the
  557.    addresses of the routines _init1, _init2, and _init3.
  558.  
  559.    *NOTE*: If symbolic addresses are used in the n_value field of the
  560.    defining .stabs, those symbols must be defined in the same file as
  561.    that containing the .stabs.
  562.  
  563.     .stabs "_xyzzy",23,0,0,_init1
  564.     .stabs "_xyzzy",23,0,0,_init2
  565.     .stabs "_xyzzy",23,0,0,_init3
  566.  
  567.    Note that (23 == (N_SETT | N_EXT)).  */
  568.  
  569. #ifndef N_SETA
  570. #define    N_SETA    0x14        /* Absolute set element symbol */
  571. #endif                /* This is input to LD, in a .o file.  */
  572.  
  573. #ifndef N_SETT
  574. #define    N_SETT    0x16        /* Text set element symbol */
  575. #endif                /* This is input to LD, in a .o file.  */
  576.  
  577. #ifndef N_SETD
  578. #define    N_SETD    0x18        /* Data set element symbol */
  579. #endif                /* This is input to LD, in a .o file.  */
  580.  
  581. #ifndef N_SETB
  582. #define    N_SETB    0x1A        /* Bss set element symbol */
  583. #endif                /* This is input to LD, in a .o file.  */
  584.  
  585. /* Macros dealing with the set element symbols defined in a.out.h */
  586. #define    SET_ELEMENT_P(x)    ((x)>=N_SETA&&(x)<=(N_SETB|N_EXT))
  587. #define TYPE_OF_SET_ELEMENT(x)    ((x)-N_SETA+N_ABS)
  588.  
  589. #ifndef N_SETV
  590. #define N_SETV    0x1C        /* Pointer to set vector in data area.  */
  591. #endif                /* This is output from LD.  */
  592.  
  593. /* If a this type of symbol is encountered, its name is a warning
  594.    message to print each time the symbol referenced by the next symbol
  595.    table entry is referenced.   
  596.  
  597.    This feature may be used to allow backwards compatibility with
  598.    certain functions (eg. gets) but to discourage programmers from
  599.    their use.
  600.  
  601.    So if, for example, you wanted to have ld print a warning whenever
  602.    the function "gets" was used in their C program, you would add the
  603.    following to the assembler file in which gets is defined:
  604.  
  605.     .stabs "Obsolete function \"gets\" referenced",30,0,0,0
  606.     .stabs "_gets",1,0,0,0
  607.  
  608.    These .stabs do not necessarily have to be in the same file as the
  609.    gets function, they simply must exist somewhere in the compilation.  */
  610.  
  611. #ifndef N_WARNING
  612. #define N_WARNING 0x1E        /* Warning message to print if symbol
  613.                    included */
  614. #endif                /* This is input to ld */
  615.  
  616. #ifndef __GNU_STAB__
  617.  
  618. /* Line number for the data section.  This is to be used to describe
  619.    the source location of a variable declaration.  */
  620. #ifndef N_DSLINE
  621. #define N_DSLINE (N_SLINE+N_DATA-N_TEXT)
  622. #endif
  623.  
  624. /* Line number for the bss section.  This is to be used to describe
  625.    the source location of a variable declaration.  */
  626. #ifndef N_BSLINE
  627. #define N_BSLINE (N_SLINE+N_BSS-N_TEXT)
  628. #endif
  629.  
  630. #endif /* not __GNU_STAB__ */
  631.  
  632. /* Symbol table */
  633.  
  634. /* Global symbol data is recorded in these structures,
  635.    one for each global symbol.
  636.    They are found via hashing in 'symtab', which points to a vector of buckets.
  637.    Each bucket is a chain of these structures through the link field.  */
  638.  
  639. typedef
  640.   struct glosym
  641.     {
  642.       /* Pointer to next symbol in this symbol's hash bucket.  */
  643.       struct glosym *link;
  644.       /* Name of this symbol.  */
  645.       char *name;
  646.       /* Value of this symbol as a global symbol.  */
  647.       long value;
  648.       /* Chain of external 'nlist's in files for this symbol, both defs
  649.      and refs.  */
  650.       struct nlist *refs;
  651.       /* Any warning message that might be associated with this symbol
  652.          from an N_WARNING symbol encountered. */
  653.       char *warning;
  654.       /* Nonzero means definitions of this symbol as common have been seen,
  655.      and the value here is the largest size specified by any of them.  */
  656.       int max_common_size;
  657.       /* For relocatable_output, records the index of this global sym in the
  658.      symbol table to be written, with the first global sym given index 0.*/
  659.       int def_count;
  660.       /* Nonzero means a definition of this global symbol is known to exist.
  661.      Library members should not be loaded on its account.  */
  662.       char defined;
  663.       /* Nonzero means a reference to this global symbol has been seen
  664.      in a file that is surely being loaded.
  665.      A value higher than 1 is the n_type code for the symbol's
  666.      definition.  */
  667.       char referenced;
  668.       /* A count of the number of undefined references printed for a
  669.      specific symbol.  If a symbol is unresolved at the end of
  670.      digest_symbols (and the loading run is supposed to produce
  671.      relocatable output) do_file_warnings keeps track of how many
  672.      unresolved reference error messages have been printed for
  673.      each symbol here.  When the number hits MAX_UREFS_PRINTED,
  674.      messages stop. */
  675.       unsigned char undef_refs;
  676.       /* 1 means that this symbol has multiple definitions.  2 means
  677.          that it has multiple definitions, and some of them are set
  678.      elements, one of which has been printed out already.  */
  679.       unsigned char multiply_defined;
  680.       /* Nonzero means print a message at all refs or defs of this symbol */
  681.       char trace;
  682.     }
  683.   symbol;
  684.  
  685. #ifndef NO_C_PLUS_PLUS
  686. /* Demangler for C++. */
  687. extern char *cplus_demangle ();
  688. #endif /* NO_C_PLUS_PLUS */
  689.  
  690. /* Demangler function to use. */
  691. char *(*demangler)() = NULL;
  692.  
  693.  
  694. /* Number of buckets in symbol hash table */
  695. #define    TABSIZE    1009
  696.  
  697. /* The symbol hash table: a vector of TABSIZE pointers to struct glosym. */
  698. symbol *symtab[TABSIZE];
  699.  
  700. /* Number of symbols in symbol hash table. */
  701. int num_hash_tab_syms = 0;
  702.  
  703. /* Count the number of nlist entries that are for local symbols.
  704.    This count and the three following counts
  705.    are incremented as as symbols are entered in the symbol table.  */
  706. int local_sym_count;
  707.  
  708. /* Count number of nlist entries that are for local symbols
  709.    whose names don't start with L. */
  710. int non_L_local_sym_count;
  711.  
  712. /* Count the number of nlist entries for debugger info.  */
  713. int debugger_sym_count;
  714.  
  715. /* Count the number of global symbols referenced and not defined.  */
  716. int undefined_global_sym_count;
  717.  
  718. /* Count the number of global symbols multiply defined.  */
  719. int multiple_def_count;
  720.  
  721. /* Count the number of defined global symbols.
  722.    Each symbol is counted only once
  723.    regardless of how many different nlist entries refer to it,
  724.    since the output file will need only one nlist entry for it.
  725.    This count is computed by `digest_symbols';
  726.    it is undefined while symbols are being loaded. */
  727. int defined_global_sym_count;
  728.  
  729. /* Count the number of symbols defined through common declarations.
  730.    This count is kept in symdef_library, linear_library, and
  731.    enter_global_ref.  It is incremented when the defined flag is set
  732.    in a symbol because of a common definition, and decremented when
  733.    the symbol is defined "for real" (ie. by something besides a common
  734.    definition).  */
  735. int common_defined_global_count;
  736.  
  737. /* Count the number of set element type symbols and the number of
  738.    separate vectors which these symbols will fit into.  See the
  739.    GNU a.out.h for more info.
  740.    This count is computed by 'enter_file_symbols' */
  741. int set_symbol_count;
  742. int set_vector_count;
  743.  
  744. /* Define a linked list of strings which define symbols which should
  745.    be treated as set elements even though they aren't.  Any symbol
  746.    with a prefix matching one of these should be treated as a set
  747.    element.
  748.  
  749.    This is to make up for deficiencies in many assemblers which aren't
  750.    willing to pass any stabs through to the loader which they don't
  751.    understand.  */
  752. struct string_list_element {
  753.   char *str;
  754.   struct string_list_element *next;
  755. };
  756.  
  757. struct string_list_element *set_element_prefixes;
  758.  
  759. /* Count the number of definitions done indirectly (ie. done relative
  760.    to the value of some other symbol. */
  761. int global_indirect_count;
  762.  
  763. /* Count the number of warning symbols encountered. */
  764. int warning_count;
  765.  
  766. /* Total number of symbols to be written in the output file.
  767.    Computed by digest_symbols from the variables above.  */
  768. int nsyms;
  769.  
  770.  
  771. /* Nonzero means ptr to symbol entry for symbol to use as start addr.
  772.    -e sets this.  */
  773. symbol *entry_symbol;
  774.  
  775. symbol *edata_symbol;   /* the symbol _edata */
  776. symbol *etext_symbol;   /* the symbol _etext */
  777. symbol *end_symbol;    /* the symbol _end */
  778.  
  779. /* Each input file, and each library member ("subfile") being loaded,
  780.    has a `file_entry' structure for it.
  781.  
  782.    For files specified by command args, these are contained in the vector
  783.    which `file_table' points to.
  784.  
  785.    For library members, they are dynamically allocated,
  786.    and chained through the `chain' field.
  787.    The chain is found in the `subfiles' field of the `file_entry'.
  788.    The `file_entry' objects for the members have `superfile' fields pointing
  789.    to the one for the library.  */
  790.  
  791. struct file_entry {
  792.   /* Name of this file.  */
  793.   char *filename;
  794.   /* Name to use for the symbol giving address of text start */
  795.   /* Usually the same as filename, but for a file spec'd with -l
  796.      this is the -l switch itself rather than the filename.  */
  797.   char *local_sym_name;
  798.  
  799.   /* Describe the layout of the contents of the file */
  800.  
  801.   /* The file's a.out header.  */
  802.   struct exec header;
  803.   /* Offset in file of GDB symbol segment, or 0 if there is none.  */
  804.   int symseg_offset;
  805.  
  806.   /* Describe data from the file loaded into core */
  807.  
  808.   /* Symbol table of the file.  */
  809.   struct nlist *symbols;
  810.   /* Size in bytes of string table.  */
  811.   int string_size;
  812.   /* Pointer to the string table.
  813.      The string table is not kept in core all the time,
  814.      but when it is in core, its address is here.  */
  815.   char *strings;
  816.  
  817.   /* Next two used only if `relocatable_output' or if needed for */
  818.   /* output of undefined reference line numbers. */
  819.  
  820.   /* Text reloc info saved by `write_text' for `coptxtrel'.  */
  821.   struct relocation_info *textrel;
  822.   /* Data reloc info saved by `write_data' for `copdatrel'.  */
  823.   struct relocation_info *datarel;
  824.  
  825.   /* Relation of this file's segments to the output file */
  826.  
  827.   /* Start of this file's text seg in the output file core image.  */
  828.   int text_start_address;
  829.   /* Start of this file's data seg in the output file core image.  */
  830.   int data_start_address;
  831.   /* Start of this file's bss seg in the output file core image.  */
  832.   int bss_start_address;
  833.   /* Offset in bytes in the output file symbol table
  834.      of the first local symbol for this file.  Set by `write_file_symbols'.  */
  835.   int local_syms_offset;
  836.  
  837.   /* For library members only */
  838.  
  839.   /* For a library, points to chain of entries for the library members.  */
  840.   struct file_entry *subfiles;
  841.   /* For a library member, offset of the member within the archive.
  842.      Zero for files that are not library members.  */
  843.   int starting_offset;
  844.   /* Size of contents of this file, if library member.  */
  845.   int total_size;
  846.   /* For library member, points to the library's own entry.  */
  847.   struct file_entry *superfile;
  848.   /* For library member, points to next entry for next member.  */
  849.   struct file_entry *chain;
  850.  
  851.   /* 1 if file is a library. */
  852.   char library_flag;
  853.  
  854.   /* 1 if file's header has been read into this structure.  */
  855.   char header_read_flag;
  856.  
  857.   /* 1 means search a set of directories for this file.  */
  858.   char search_dirs_flag;
  859.  
  860.   /* 1 means this is base file of incremental load.
  861.      Do not load this file's text or data.
  862.      Also default text_start to after this file's bss. */
  863.   char just_syms_flag;
  864. };
  865.  
  866. /* Vector of entries for input files specified by arguments.
  867.    These are all the input files except for members of specified libraries.  */
  868. struct file_entry *file_table;
  869.  
  870. /* Length of that vector.  */
  871. int number_of_files;
  872.  
  873. /* When loading the text and data, we can avoid doing a close
  874.    and another open between members of the same library.
  875.  
  876.    These two variables remember the file that is currently open.
  877.    Both are zero if no file is open.
  878.  
  879.    See `each_file' and `file_close'.  */
  880.  
  881. struct file_entry *input_file;
  882. int input_desc;
  883.  
  884. /* The name of the file to write; "a.out" by default.  */
  885.  
  886. char *output_filename;
  887.  
  888. /* Descriptor for writing that file with `mywrite'.  */
  889.  
  890. int outdesc;
  891.  
  892. /* Header for that file (filled in by `write_header').  */
  893.  
  894. struct exec outheader;
  895.  
  896. #ifdef COFF_ENCAPSULATE
  897. struct coffheader coffheader;
  898. int need_coff_header;
  899. #endif
  900.  
  901. /* The following are computed by `digest_symbols'.  */
  902.  
  903. int text_size;        /* total size of text of all input files.  */
  904. int data_size;        /* total size of data of all input files.  */
  905. int bss_size;        /* total size of bss of all input files.  */
  906. int text_reloc_size;    /* total size of text relocation of all input files.  */
  907. int data_reloc_size;    /* total size of data relocation of all input */
  908.             /* files.  */
  909.  
  910. /* Specifications of start and length of the area reserved at the end
  911.    of the text segment for the set vectors.  Computed in 'digest_symbols' */
  912. int set_sect_start;
  913. int set_sect_size;
  914.  
  915. /* Pointer for in core storage for the above vectors, before they are
  916.    written. */
  917. unsigned long *set_vectors;
  918.  
  919. /* Amount of cleared space to leave between the text and data segments.  */
  920.  
  921. int text_pad;
  922.  
  923. /* Amount of bss segment to include as part of the data segment.  */
  924.  
  925. int data_pad;
  926.  
  927. /* Format of __.SYMDEF:
  928.    First, a longword containing the size of the 'symdef' data that follows.
  929.    Second, zero or more 'symdef' structures.
  930.    Third, a longword containing the length of symbol name strings.
  931.    Fourth, zero or more symbol name strings (each followed by a null).  */
  932.  
  933. struct symdef {
  934.   int symbol_name_string_index;
  935.   int library_member_offset;
  936. };
  937.  
  938. /* Record most of the command options.  */
  939.  
  940. /* Address we assume the text section will be loaded at.
  941.    We relocate symbols and text and data for this, but we do not
  942.    write any padding in the output file for it.  */
  943. int text_start;
  944.  
  945. /* Offset of default entry-pc within the text section.  */
  946. int entry_offset;
  947.  
  948. /* Address we decide the data section will be loaded at.  */
  949. int data_start;
  950.  
  951. /* `text-start' address is normally this much plus a page boundary.
  952.    This is not a user option; it is fixed for each system.  */
  953. int text_start_alignment;
  954.  
  955. /* Nonzero if -T was specified in the command line.
  956.    This prevents text_start from being set later to default values.  */
  957. int T_flag_specified;
  958.  
  959. /* Nonzero if -Tdata was specified in the command line.
  960.    This prevents data_start from being set later to default values.  */
  961. int Tdata_flag_specified;
  962.  
  963. /* Size to pad data section up to.
  964.    We simply increase the size of the data section, padding with zeros,
  965.    and reduce the size of the bss section to match.  */
  966. int specified_data_size;
  967.  
  968. /* Gap to insert between end of bss and start of data seg */
  969. int data_gap;
  970.  
  971. /* Nonzero if -Z was specified (for data_gap) */
  972. int Z_flag_specified;
  973.  
  974. /* Magic number to use for the output file, set by switch.  */
  975. int magic;
  976.  
  977. /* Nonzero means print names of input files as processed.  */
  978. int trace_files;
  979.  
  980. /* Which symbols should be stripped (omitted from the output):
  981.    none, all, or debugger symbols.  */
  982. enum { STRIP_NONE, STRIP_ALL, STRIP_DEBUGGER } strip_symbols;
  983.  
  984. /* Which local symbols should be omitted:
  985.    none, all, or those starting with L.
  986.    This is irrelevant if STRIP_NONE.  */
  987. enum { DISCARD_NONE, DISCARD_ALL, DISCARD_L } discard_locals;
  988.  
  989. /* 1 => write load map.  */
  990. int write_map;
  991.  
  992. /* 1 => write relocation into output file so can re-input it later.  */
  993. int relocatable_output;
  994.  
  995. /* 1 => assign space to common symbols even if `relocatable_output'.  */
  996. int force_common_definition;
  997.  
  998. /* Standard directories to search for files specified by -l.  */
  999. char *standard_search_dirs[] =
  1000. #ifdef STANDARD_SEARCH_DIRS
  1001.   {STANDARD_SEARCH_DIRS};
  1002. #else
  1003. #ifdef NON_NATIVE
  1004.   {"/usr/local/lib/gnu"};
  1005. #else
  1006.   {"/lib", "/usr/lib", "/usr/local/lib"};
  1007. #endif
  1008. #endif
  1009.  
  1010. /* Actual vector of directories to search;
  1011.    this contains those specified with -L plus the standard ones.  */
  1012. char **search_dirs;
  1013.  
  1014. /* Length of the vector `search_dirs'.  */
  1015. int n_search_dirs;
  1016.  
  1017. /* Non zero means to create the output executable. */
  1018. /* Cleared by nonfatal errors.  */
  1019. int make_executable;
  1020.  
  1021. /* Force the executable to be output, even if there are non-fatal
  1022.    errors */
  1023. int force_executable;
  1024.  
  1025. /* Keep a list of any symbols referenced from the command line (so
  1026.    that error messages for these guys can be generated). This list is
  1027.    zero terminated. */
  1028. struct glosym **cmdline_references;
  1029. int cl_refs_allocated;
  1030.  
  1031. void bcopy (), bzero ();
  1032. int malloc (), realloc ();
  1033. #ifndef alloca
  1034. int alloca ();
  1035. #endif
  1036. int free ();
  1037.  
  1038. int xmalloc ();
  1039. int xrealloc ();
  1040. void fatal ();
  1041. void fatal_with_file ();
  1042. void perror_name ();
  1043. void perror_file ();
  1044. void error ();
  1045.  
  1046. void digest_symbols ();
  1047. void print_symbols ();
  1048. void load_symbols ();
  1049. void decode_command ();
  1050. void list_undefined_symbols ();
  1051. void list_unresolved_references ();
  1052. void write_output ();
  1053. void write_header ();
  1054. void write_text ();
  1055. void read_file_relocation ();
  1056. void write_data ();
  1057. void write_rel ();
  1058. void write_syms ();
  1059. void write_symsegs ();
  1060. void mywrite ();
  1061. void symtab_init ();
  1062. void padfile ();
  1063. char *concat ();
  1064. char *get_file_name ();
  1065. symbol *getsym (), *getsym_soft ();
  1066.  
  1067. int
  1068. main (argc, argv)
  1069.      char **argv;
  1070.      int argc;
  1071. {
  1072. /*   Added this to stop ld core-dumping on very large .o files.    */
  1073. #ifdef RLIMIT_STACK
  1074.   /* Get rid of any avoidable limit on stack size.  */
  1075.   {
  1076.       struct rlimit rlim;
  1077.  
  1078.       /* Set the stack limit huge so that alloca does not fail. */
  1079.       getrlimit (RLIMIT_STACK, &rlim);
  1080.       rlim.rlim_cur = rlim.rlim_max;
  1081.       setrlimit (RLIMIT_STACK, &rlim);
  1082.   }
  1083. #endif /* RLIMIT_STACK */
  1084.  
  1085. #ifdef TARGET_PAGE_SIZE
  1086.   page_size = TARGET_PAGE_SIZE;
  1087. #else
  1088.   page_size = getpagesize ();
  1089. #endif
  1090.  
  1091.   progname = argv[0];
  1092.  
  1093.   /* Clear the cumulative info on the output file.  */
  1094.   text_size = 0;
  1095.   data_size = 0;
  1096.   bss_size = 0;
  1097.   text_reloc_size = 0;
  1098.   data_reloc_size = 0;
  1099.  
  1100.   data_pad = 0;
  1101.   text_pad = 0;
  1102.  
  1103.   /* Initialize the data about options.  */
  1104.  
  1105.   specified_data_size = 0;
  1106.   strip_symbols = STRIP_NONE;
  1107.   trace_files = 0;
  1108.   discard_locals = DISCARD_NONE;
  1109.   entry_symbol = 0;
  1110.   write_map = 0;
  1111.   relocatable_output = 0;
  1112.   force_common_definition = 0;
  1113.   T_flag_specified = 0;
  1114.   Tdata_flag_specified = 0;
  1115.   magic = DEFAULT_MAGIC;
  1116.   make_executable = 1;
  1117.   force_executable = 0;
  1118.   set_element_prefixes = 0;
  1119.   Z_flag_specified = 0;
  1120.  
  1121.   /* Initialize the cumulative counts of symbols.  */
  1122.  
  1123.   local_sym_count = 0;
  1124.   non_L_local_sym_count = 0;
  1125.   debugger_sym_count = 0;
  1126.   undefined_global_sym_count = 0;
  1127.   set_symbol_count = 0;
  1128.   set_vector_count = 0;
  1129.   global_indirect_count = 0;
  1130.   warning_count = 0;
  1131.   multiple_def_count = 0;
  1132.   common_defined_global_count = 0;
  1133.  
  1134.   /* Keep a list of symbols referenced from the command line */
  1135.   cl_refs_allocated = 10;
  1136.   cmdline_references =
  1137.     (struct glosym **) xmalloc (cl_refs_allocated
  1138.                   * sizeof(struct glosym *));
  1139.   *cmdline_references = 0;
  1140.  
  1141.   /* Completely decode ARGV.  */
  1142.  
  1143.   decode_command (argc, argv);
  1144.  
  1145.   /* Create the symbols `etext', `edata' and `end'.  */
  1146.  
  1147.   if (!relocatable_output)
  1148.     symtab_init ();
  1149.  
  1150.   /* Determine whether to count the header as part of
  1151.      the text size, and initialize the text size accordingly.
  1152.      This depends on the kind of system and on the output format selected.  */
  1153.  
  1154.   N_SET_MAGIC (outheader, magic);
  1155. #ifdef INITIALIZE_HEADER
  1156.   INITIALIZE_HEADER;
  1157. #endif
  1158.  
  1159.   text_size = sizeof (struct exec);
  1160. #ifdef COFF_ENCAPSULATE
  1161.   if (relocatable_output == 0)
  1162.     {
  1163.       need_coff_header = 1;
  1164.       /* set this flag now, since it will change the values of N_TXTOFF, etc */
  1165.       N_SET_FLAGS (outheader, N_FLAGS_COFF_ENCAPSULATE);
  1166.       text_size += sizeof (struct coffheader);
  1167.     }
  1168. #endif
  1169.  
  1170.   text_size -= N_TXTOFF (outheader);
  1171.  
  1172.   if (T_flag_specified)
  1173.       text_size = 0;    /* don't add sizeof(exec) at -T location */
  1174.  
  1175.   if (text_size < 0)
  1176.     text_size = 0;
  1177.   entry_offset = text_size;
  1178.  
  1179.   if (!T_flag_specified && !relocatable_output)
  1180.     text_start = N_TXTADDR (outheader);
  1181.  
  1182.   /* The text-start address is normally this far past a page boundary.  */
  1183.   text_start_alignment = text_start % page_size;
  1184.  
  1185.   /* Load symbols of all input files.
  1186.      Also search all libraries and decide which library members to load.  */
  1187.  
  1188.   load_symbols ();
  1189.  
  1190.   /* Compute where each file's sections go, and relocate symbols.  */
  1191.  
  1192.   digest_symbols ();
  1193.  
  1194.   /* Print error messages for any missing symbols, for any warning
  1195.      symbols, and possibly multiple definitions */
  1196.  
  1197.   do_warnings (stderr);
  1198.  
  1199.   /* Print a map, if requested.  */
  1200.  
  1201.   if (write_map) print_symbols (stdout);
  1202.  
  1203.   /* Write the output file.  */
  1204.  
  1205.   if (make_executable || force_executable)
  1206.     write_output ();
  1207.  
  1208.   exit (!make_executable);
  1209. }
  1210.  
  1211. void decode_option ();
  1212.  
  1213. /* Analyze a command line argument.
  1214.    Return 0 if the argument is a filename.
  1215.    Return 1 if the argument is a option complete in itself.
  1216.    Return 2 if the argument is a option which uses an argument.
  1217.  
  1218.    Thus, the value is the number of consecutive arguments
  1219.    that are part of options.  */
  1220.  
  1221. int
  1222. classify_arg (arg)
  1223.      register char *arg;
  1224. {
  1225.   if (*arg != '-') return 0;
  1226.   switch (arg[1])
  1227.     {
  1228.     case 'A':
  1229.     case 'D':
  1230.     case 'e':
  1231.     case 'L':
  1232.     case 'l':
  1233.     case 'o':
  1234.     case 'u':
  1235.     case 'V':
  1236.     case 'y':
  1237.     case 'Z':
  1238.       if (arg[2])
  1239.     return 1;
  1240.       return 2;
  1241.  
  1242.     case 'B':
  1243.       if (! strcmp (&arg[2], "static"))
  1244.     return 1;
  1245.  
  1246.     case 'T':
  1247.       if (arg[2] == 0)
  1248.     return 2;
  1249.       if (! strcmp (&arg[2], "text"))
  1250.     return 2;
  1251.       if (! strcmp (&arg[2], "data"))
  1252.     return 2;
  1253.       return 1;
  1254.  
  1255. #if TARGET==TARGET_SEQUENT      
  1256.       /* k == Symmetry standalone,
  1257.        * p == don't align text/data boundary (for 8K disk bootstraps).
  1258.        */
  1259.    case 'k':
  1260.    case 'p':
  1261.        return 1;
  1262. #endif       
  1263.     }
  1264.  
  1265.   return 1;
  1266. }
  1267.  
  1268. /* Process the command arguments,
  1269.    setting up file_table with an entry for each input file,
  1270.    and setting variables according to the options.  */
  1271.  
  1272. void
  1273. decode_command (argc, argv)
  1274.      char **argv;
  1275.      int argc;
  1276. {
  1277.   register int i;
  1278.   register struct file_entry *p;
  1279.  
  1280.   number_of_files = 0;
  1281.   output_filename = "a.out";
  1282.  
  1283.   n_search_dirs = 0;
  1284.   search_dirs = (char **) xmalloc (sizeof (char *));
  1285.  
  1286.   /* First compute number_of_files so we know how long to make file_table.  */
  1287.   /* Also process most options completely.  */
  1288.  
  1289.   for (i = 1; i < argc; i++)
  1290.     {
  1291.       register int code = classify_arg (argv[i]);
  1292.       if (code)
  1293.     {
  1294.       if (i + code > argc)
  1295.         fatal ("no argument following %s\n", argv[i]);
  1296.  
  1297.       decode_option (argv[i], argv[i+1]);
  1298.  
  1299.       if (argv[i][1] == 'l' || argv[i][1] == 'A')
  1300.         number_of_files++;
  1301.  
  1302.       i += code - 1;
  1303.     }
  1304.       else
  1305.     number_of_files++;
  1306.     }
  1307.  
  1308.   if (!number_of_files)
  1309.     fatal ("no input files", 0);
  1310.  
  1311.   p = file_table
  1312.     = (struct file_entry *) xmalloc (number_of_files * sizeof (struct file_entry));
  1313.   bzero (p, number_of_files * sizeof (struct file_entry));
  1314.  
  1315.   /* Now scan again and fill in file_table.  */
  1316.   /* All options except -A and -l are ignored here.  */
  1317.  
  1318.   for (i = 1; i < argc; i++)
  1319.     {
  1320.       register int code = classify_arg (argv[i]);
  1321.  
  1322.       if (code)
  1323.     {
  1324.       char *string;
  1325.       if (code == 2)
  1326.         string = argv[i+1];
  1327.       else
  1328.         string = &argv[i][2];
  1329.  
  1330.       if (argv[i][1] == 'A')
  1331.         {
  1332.           if (p != file_table)
  1333.         fatal ("-A specified before an input file other than the first");
  1334.  
  1335.           p->filename = string;
  1336.           p->local_sym_name = string;
  1337.           p->just_syms_flag = 1;
  1338.           p++;
  1339.         }
  1340.       if (argv[i][1] == 'l')
  1341.         {
  1342.           p->filename = concat ("lib", string, ".a");
  1343.           p->local_sym_name = concat ("-l", string, "");
  1344.           p->search_dirs_flag = 1;
  1345.           p++;
  1346.         }
  1347.       i += code - 1;
  1348.     }
  1349.       else
  1350.     {
  1351.       p->filename = argv[i];
  1352.       p->local_sym_name = argv[i];
  1353.       p++;
  1354.     }
  1355.     }
  1356.  
  1357.   /* Now check some option settings for consistency.  */
  1358.  
  1359. #ifndef sprite
  1360. #ifdef NMAGIC
  1361.   if ((magic == ZMAGIC || magic == NMAGIC)
  1362. #else
  1363. #ifdef SMAGIC
  1364.     if ((magic == SMAGIC || magic == ZMAGIC)
  1365. #else
  1366.     if ((magic == ZMAGIC)
  1367. #endif /* SMAGIC */
  1368. #endif
  1369.       && (text_start - text_start_alignment) & (page_size - 1))
  1370.     fatal ("-T argument not multiple of page size, with sharable output", 0);
  1371. #endif
  1372.  
  1373.   /* Append the standard search directories to the user-specified ones.  */
  1374.   {
  1375.     int n = sizeof standard_search_dirs / sizeof standard_search_dirs[0];
  1376.     n_search_dirs += n;
  1377.     search_dirs
  1378.       = (char **) xrealloc (search_dirs, n_search_dirs * sizeof (char *));
  1379.     bcopy (standard_search_dirs, &search_dirs[n_search_dirs - n],
  1380.        n * sizeof (char *));
  1381.   }
  1382. }
  1383.  
  1384.  
  1385. void
  1386. add_cmdline_ref (sp)
  1387.      struct glosym *sp;
  1388. {
  1389.   struct glosym **ptr;
  1390.  
  1391.   for (ptr = cmdline_references;
  1392.        ptr < cmdline_references + cl_refs_allocated && *ptr;
  1393.        ptr++)
  1394.     ;
  1395.  
  1396.   if (ptr >= cmdline_references + cl_refs_allocated - 1)
  1397.     {
  1398.       int diff = ptr - cmdline_references;
  1399.       
  1400.       cl_refs_allocated *= 2;
  1401.       cmdline_references = (struct glosym **)
  1402.     xrealloc (cmdline_references,
  1403.          cl_refs_allocated * sizeof (struct glosym *));
  1404.       ptr = cmdline_references + diff;
  1405.     }
  1406.   
  1407.   *ptr++ = sp;
  1408.   *ptr = (struct glosym *) 0;
  1409. }
  1410.     
  1411. int
  1412. set_element_prefixed_p (name)
  1413.      char *name;
  1414. {
  1415.   struct string_list_element *p;
  1416.   int i;
  1417.  
  1418.   for (p = set_element_prefixes; p; p = p->next)
  1419.     {
  1420.       for (i = 0; p->str[i] != '\0' && (p->str[i] == name[i]); i++)
  1421.     ;
  1422.  
  1423.       if (p->str[i] == '\0')
  1424.     return 1;
  1425.     }
  1426.   return 0;
  1427. }
  1428.  
  1429. int parse ();
  1430.  
  1431. /* Record an option and arrange to act on it later.
  1432.    ARG should be the following command argument,
  1433.    which may or may not be used by this option.
  1434.  
  1435.    The `l' and `A' options are ignored here since they actually
  1436.    specify input files.  */
  1437.  
  1438. void
  1439. decode_option (swt, arg)
  1440.      register char *swt, *arg;
  1441. {
  1442.   /* We get Bstatic from gcc on suns.  */
  1443.   if (! strcmp (swt + 1, "Bstatic"))
  1444.     return;
  1445.   if (! strcmp (swt + 1, "Ttext"))
  1446.     {
  1447. #ifdef sprite 
  1448.       magic = OMAGIC;
  1449. #endif
  1450.       text_start = parse (arg, "%x", "invalid argument to -Ttext");
  1451.       T_flag_specified = 1;
  1452.       return;
  1453.     }
  1454.   if (! strcmp (swt + 1, "Tdata"))
  1455.     {
  1456.       data_start = parse (arg, "%x", "invalid argument to -Tdata");
  1457.       Tdata_flag_specified = 1;
  1458.       return;
  1459.     }
  1460.   if (! strcmp (swt + 1, "noinhibit-exec"))
  1461.     {
  1462.       force_executable = 1;
  1463.       return;
  1464.     }
  1465.  
  1466.   if (swt[2] != 0)
  1467.     arg = &swt[2];
  1468.  
  1469.   switch (swt[1])
  1470.     {
  1471.     case 'A':
  1472.       return;
  1473.  
  1474.     case 'D':
  1475.       specified_data_size = parse (arg, "%x", "invalid argument to -D");
  1476.       return;
  1477.  
  1478.     case 'd':
  1479.       force_common_definition = 1;
  1480.       return;
  1481.  
  1482.     case 'e':
  1483.       entry_symbol = getsym (arg);
  1484.       if (!entry_symbol->defined && !entry_symbol->referenced)
  1485.     undefined_global_sym_count++;
  1486.       entry_symbol->referenced = 1;
  1487.       add_cmdline_ref (entry_symbol);
  1488.       return;
  1489.  
  1490. #if TARGET==TARGET_SEQUENT
  1491.     case 'k':
  1492. #ifdef SMAGIC
  1493.       magic = SMAGIC;
  1494. #else
  1495.       fatal("No SMAGIC defined for -k");
  1496. #endif
  1497.       return;
  1498. #endif
  1499.  
  1500.     case 'l':
  1501. #ifndef NO_C_PLUS_PLUS
  1502.       /* If linking with libg++, use the C++ demangler. */
  1503.       if (arg != NULL && strcmp (arg, "g++") == 0)
  1504.       demangler = cplus_demangle;
  1505. #endif /* NO_C_PLUS_PLUS */
  1506.       return;
  1507.  
  1508.     case 'L':
  1509.       n_search_dirs++;
  1510.       search_dirs
  1511.     = (char **) xrealloc (search_dirs, n_search_dirs * sizeof (char *));
  1512.       search_dirs[n_search_dirs - 1] = arg;
  1513.       return;
  1514.  
  1515.     case 'M':
  1516.       write_map = 1;
  1517.       return;
  1518.  
  1519.     case 'N':
  1520.       magic = OMAGIC;
  1521.       return;
  1522.  
  1523. #ifdef NMAGIC
  1524.     case 'n':
  1525.       magic = NMAGIC;
  1526.       return;
  1527. #endif
  1528.  
  1529.     case 'o':
  1530.       output_filename = arg;
  1531.       return;
  1532.  
  1533.     case 'r':
  1534.       relocatable_output = 1;
  1535.       magic = OMAGIC;
  1536.       text_start = 0;
  1537.       return;
  1538.  
  1539.     case 'S':
  1540.       strip_symbols = STRIP_DEBUGGER;
  1541.       return;
  1542.  
  1543.     case 's':
  1544.       strip_symbols = STRIP_ALL;
  1545.       return;
  1546.  
  1547.     case 'T':
  1548. #ifdef sprite
  1549.       magic = OMAGIC;
  1550. #endif      
  1551.       text_start = parse (arg, "%x", "invalid argument to -T");
  1552.       T_flag_specified = 1;
  1553.       return;
  1554.  
  1555.     case 't':
  1556.       trace_files = 1;
  1557.       return;
  1558.  
  1559.     case 'u':
  1560.       {
  1561.     register symbol *sp = getsym (arg);
  1562.     if (!sp->defined && !sp->referenced)
  1563.       undefined_global_sym_count++;
  1564.     sp->referenced = 1;
  1565.     add_cmdline_ref (sp);
  1566.       }
  1567.       return;
  1568.  
  1569.     case 'V':
  1570.       {
  1571.     struct string_list_element *new
  1572.       = (struct string_list_element *)
  1573.         xmalloc (sizeof (struct string_list_element));
  1574.  
  1575.     new->str = arg;
  1576.     new->next = set_element_prefixes;
  1577.     set_element_prefixes = new;
  1578.     return;
  1579.       }
  1580.  
  1581.     case 'X':
  1582.       discard_locals = DISCARD_L;
  1583.       return;
  1584.  
  1585.     case 'x':
  1586.       discard_locals = DISCARD_ALL;
  1587.       return;
  1588.  
  1589.     case 'y':
  1590.       {
  1591.     register symbol *sp = getsym (&swt[2]);
  1592.     sp->trace = 1;
  1593.       }
  1594.       return;
  1595.  
  1596.     case 'z':
  1597.       magic = ZMAGIC;
  1598.       return;
  1599.  
  1600.     case 'Z':
  1601.       data_gap = parse (arg, "%x", "invalid argument to -Z");
  1602.       if (data_gap % page_size)
  1603.       fatal("-Z argument not a multiple of page size", 0);
  1604.       Z_flag_specified = 1;
  1605.       return;
  1606.  
  1607.     default:
  1608.       fatal ("invalid command option `%s'", swt);
  1609.     }
  1610. }
  1611.  
  1612. /** Convenient functions for operating on one or all files being */
  1613.  /** loaded.  */
  1614. void print_file_name ();
  1615.  
  1616. /* Call FUNCTION on each input file entry.
  1617.    Do not call for entries for libraries;
  1618.    instead, call once for each library member that is being loaded.
  1619.  
  1620.    FUNCTION receives two arguments: the entry, and ARG.  */
  1621.  
  1622. void
  1623. each_file (function, arg)
  1624.      register void (*function)();
  1625.      register int arg;
  1626. {
  1627.   register int i;
  1628.  
  1629.   for (i = 0; i < number_of_files; i++)
  1630.     {
  1631.       register struct file_entry *entry = &file_table[i];
  1632.       if (entry->library_flag)
  1633.         {
  1634.       register struct file_entry *subentry = entry->subfiles;
  1635.       for (; subentry; subentry = subentry->chain)
  1636.         (*function) (subentry, arg);
  1637.     }
  1638.       else
  1639.     (*function) (entry, arg);
  1640.     }
  1641. }
  1642.  
  1643. /* Call FUNCTION on each input file entry until it returns a non-zero
  1644.    value.  Return this value.
  1645.    Do not call for entries for libraries;
  1646.    instead, call once for each library member that is being loaded.
  1647.  
  1648.    FUNCTION receives two arguments: the entry, and ARG.  It must be a
  1649.    function returning unsigned long (though this can probably be fudged). */
  1650. #if 0
  1651. unsigned long
  1652. check_each_file (function, arg)
  1653.      register unsigned long (*function)();
  1654.      register int arg;
  1655. {
  1656.   register int i;
  1657.   register unsigned long return_val;
  1658.  
  1659.   for (i = 0; i < number_of_files; i++)
  1660.     {
  1661.       register struct file_entry *entry = &file_table[i];
  1662.       if (entry->library_flag)
  1663.         {
  1664.       register struct file_entry *subentry = entry->subfiles;
  1665.       for (; subentry; subentry = subentry->chain)
  1666.         if (return_val = (*function) (subentry, arg))
  1667.           return return_val;
  1668.     }
  1669.       else
  1670.     if (return_val = (*function) (entry, arg))
  1671.       return return_val;
  1672.     }
  1673.   return 0;
  1674. }
  1675. #endif
  1676.  
  1677. /* Like `each_file' but ignore files that were just for symbol definitions.  */
  1678.  
  1679. void
  1680. each_full_file (function, arg)
  1681.      register void (*function)();
  1682.      register int arg;
  1683. {
  1684.   register int i;
  1685.  
  1686.   for (i = 0; i < number_of_files; i++)
  1687.     {
  1688.       register struct file_entry *entry = &file_table[i];
  1689.       if (entry->just_syms_flag)
  1690.     continue;
  1691.       if (entry->library_flag)
  1692.         {
  1693.       register struct file_entry *subentry = entry->subfiles;
  1694.       for (; subentry; subentry = subentry->chain)
  1695.         (*function) (subentry, arg);
  1696.     }
  1697.       else
  1698.     (*function) (entry, arg);
  1699.     }
  1700. }
  1701.  
  1702. /* Close the input file that is now open.  */
  1703.  
  1704. void
  1705. file_close ()
  1706. {
  1707.   close (input_desc);
  1708.   input_desc = 0;
  1709.   input_file = 0;
  1710. }
  1711.  
  1712. /* Open the input file specified by 'entry', and return a descriptor.
  1713.    The open file is remembered; if the same file is opened twice in a row,
  1714.    a new open is not actually done.  */
  1715.  
  1716. int
  1717. file_open (entry)
  1718.      register struct file_entry *entry;
  1719. {
  1720.   register int desc;
  1721.  
  1722.   if (entry->superfile)
  1723.     return file_open (entry->superfile);
  1724.  
  1725.   if (entry == input_file)
  1726.     return input_desc;
  1727.  
  1728.   if (input_file) file_close ();
  1729.  
  1730.   if (entry->search_dirs_flag)
  1731.     {
  1732.       int i;
  1733.  
  1734.       for (i = 0; i < n_search_dirs; i++)
  1735.     {
  1736.       register char *string
  1737.         = concat (search_dirs[i], "/", entry->filename);
  1738.       desc = open (string, O_RDONLY, 0);
  1739.       if (desc > 0)
  1740.         {
  1741.           entry->filename = string;
  1742.           entry->search_dirs_flag = 0;
  1743.           break;
  1744.         }
  1745.       free (string);
  1746.     }
  1747.     }
  1748.   else
  1749.     desc = open (entry->filename, O_RDONLY, 0);
  1750.  
  1751.   if (desc > 0)
  1752.     {
  1753.       input_file = entry;
  1754.       input_desc = desc;
  1755.       return desc;
  1756.     }
  1757.  
  1758.   perror_file (entry);
  1759.   /* NOTREACHED */
  1760. }
  1761.  
  1762. /* Print the filename of ENTRY on OUTFILE (a stdio stream),
  1763.    and then a newline.  */
  1764.  
  1765. void
  1766. prline_file_name (entry, outfile)
  1767.      struct file_entry *entry;
  1768.      FILE *outfile;
  1769. {
  1770.   print_file_name (entry, outfile);
  1771.   fprintf (outfile, "\n");
  1772. }
  1773.  
  1774. /* Print the filename of ENTRY on OUTFILE (a stdio stream).  */
  1775.  
  1776. void
  1777. print_file_name (entry, outfile)
  1778.      struct file_entry *entry;
  1779.      FILE *outfile;
  1780. {
  1781.   if (entry->superfile)
  1782.     {
  1783.       print_file_name (entry->superfile, outfile);
  1784.       fprintf (outfile, "(%s)", entry->filename);
  1785.     }
  1786.   else
  1787.     fprintf (outfile, "%s", entry->filename);
  1788. }
  1789.  
  1790. /* Return the filename of entry as a string (malloc'd for the purpose) */
  1791.  
  1792. char *
  1793. get_file_name (entry)
  1794.      struct file_entry *entry;
  1795. {
  1796.   char *result, *supfile;
  1797.   if (entry->superfile)
  1798.     {
  1799.       supfile = get_file_name (entry->superfile);
  1800.       result = (char *) xmalloc (strlen (supfile)
  1801.                  + strlen (entry->filename) + 3);
  1802.       sprintf (result, "%s(%s)", supfile, entry->filename);
  1803.       free (supfile);
  1804.     }
  1805.   else
  1806.     {
  1807.       result = (char *) xmalloc (strlen (entry->filename) + 1);
  1808.       strcpy (result, entry->filename);
  1809.     }
  1810.   return result;
  1811. }
  1812.  
  1813. /* Medium-level input routines for rel files.  */
  1814.  
  1815. /* Read a file's header into the proper place in the file_entry.
  1816.    DESC is the descriptor on which the file is open.
  1817.    ENTRY is the file's entry.  */
  1818.  
  1819. void
  1820. read_header (desc, entry)
  1821.      int desc;
  1822.      register struct file_entry *entry;
  1823. {
  1824.   register int len;
  1825.   struct exec *loc = (struct exec *) &entry->header;
  1826.  
  1827.   lseek (desc, entry->starting_offset, 0);
  1828.   len = read (desc, loc, sizeof (struct exec));
  1829.   if (len != sizeof (struct exec))
  1830.     fatal_with_file ("failure reading header of ", entry);
  1831. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1832.   fix_exec_header_byte_order(loc);
  1833. #endif
  1834.   if (N_BADMAG (*loc))
  1835.     fatal_with_file ("bad magic number in ", entry);
  1836.  
  1837.   entry->header_read_flag = 1;
  1838. }
  1839.  
  1840. /* Read the symbols of file ENTRY into core.
  1841.    Assume it is already open, on descriptor DESC.
  1842.    Also read the length of the string table, which follows the symbol table,
  1843.    but don't read the contents of the string table.  */
  1844.  
  1845. void
  1846. read_entry_symbols (desc, entry)
  1847.      struct file_entry *entry;
  1848.      int desc;
  1849. {
  1850.   int str_size;
  1851.  
  1852.   if (!entry->header_read_flag)
  1853.     read_header (desc, entry);
  1854.  
  1855.   entry->symbols = (struct nlist *) xmalloc (entry->header.a_syms);
  1856.  
  1857.   lseek (desc, N_SYMOFF (entry->header) + entry->starting_offset, 0);
  1858.   if (entry->header.a_syms != read (desc, entry->symbols, entry->header.a_syms))
  1859.     fatal_with_file ("premature end of file in symbols of ", entry);
  1860. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1861.   fix_symbol_byte_order(entry->symbols, entry->header.a_syms);
  1862. #endif
  1863.   lseek (desc, N_STROFF (entry->header) + entry->starting_offset, 0);
  1864.   if (sizeof str_size != read (desc, &str_size, sizeof str_size))
  1865.     fatal_with_file ("bad string table size in ", entry);
  1866. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1867.   fix_byte_order(&str_size, sizeof(str_size));
  1868. #endif
  1869.   entry->string_size = str_size;
  1870. }
  1871.  
  1872. /* Read the string table of file ENTRY into core.
  1873.    Assume it is already open, on descriptor DESC.
  1874.    Also record whether a GDB symbol segment follows the string table.  */
  1875.  
  1876. void
  1877. read_entry_strings (desc, entry)
  1878.      struct file_entry *entry;
  1879.      int desc;
  1880. {
  1881.   int buffer;
  1882.  
  1883.   if (!entry->header_read_flag)
  1884.     read_header (desc, entry);
  1885.  
  1886.   lseek (desc, N_STROFF (entry->header) + entry->starting_offset, 0);
  1887.   if (entry->string_size != read (desc, entry->strings, entry->string_size))
  1888.     fatal_with_file ("premature end of file in strings of ", entry);
  1889.  
  1890.   /* While we are here, see if the file has a symbol segment at the end.
  1891.      For a separate file, just try reading some more.
  1892.      For a library member, compare current pos against total size.  */
  1893.   if (entry->superfile)
  1894.     {
  1895.       if (entry->total_size == N_STROFF (entry->header) + entry->string_size)
  1896.     return;
  1897.     }
  1898.   else
  1899.     {
  1900.       buffer = read (desc, &buffer, sizeof buffer);
  1901.       if (buffer == 0)
  1902.     return;
  1903.       if (buffer != sizeof buffer)
  1904.     fatal_with_file ("premature end of file in GDB symbol segment of ", entry);
  1905.     }
  1906.  
  1907.   entry->symseg_offset = N_STROFF (entry->header) + entry->string_size;
  1908. }
  1909.  
  1910. /* Read in the symbols of all input files.  */
  1911.  
  1912. void read_file_symbols (), read_entry_symbols (), read_entry_strings ();
  1913. void enter_file_symbols (), enter_global_ref (), search_library ();
  1914.  
  1915. void
  1916. load_symbols ()
  1917. {
  1918.   register int i;
  1919.  
  1920.   if (trace_files) fprintf (stderr, "Loading symbols:\n\n");
  1921.  
  1922.   for (i = 0; i < number_of_files; i++)
  1923.     {
  1924.       register struct file_entry *entry = &file_table[i];
  1925.       read_file_symbols (entry);
  1926.     }
  1927.  
  1928.   if (trace_files) fprintf (stderr, "\n");
  1929. }
  1930.  
  1931. /* If ENTRY is a rel file, read its symbol and string sections into core.
  1932.    If it is a library, search it and load the appropriate members
  1933.    (which means calling this function recursively on those members).  */
  1934.  
  1935. void
  1936. read_file_symbols (entry)
  1937.      register struct file_entry *entry;
  1938. {
  1939.   register int desc;
  1940.   register int len;
  1941.   struct exec hdr;
  1942.  
  1943.   desc = file_open (entry);
  1944.  
  1945.   len = read (desc, &hdr, sizeof hdr);
  1946.   if (len != sizeof hdr)
  1947.     fatal_with_file ("failure reading header of ", entry);
  1948. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  1949.   fix_exec_header_byte_order(&hdr);
  1950. #endif
  1951.   if (!N_BADMAG (hdr))
  1952.     {
  1953.       read_entry_symbols (desc, entry);
  1954.       entry->strings = (char *) alloca (entry->string_size);
  1955.       read_entry_strings (desc, entry);
  1956.       enter_file_symbols (entry);
  1957.       entry->strings = 0;
  1958.     }
  1959.   else
  1960.     {
  1961.       char armag[SARMAG];
  1962.  
  1963.       lseek (desc, 0, 0);
  1964.       if (SARMAG != read (desc, armag, SARMAG) || strncmp (armag, ARMAG, SARMAG))
  1965.     fatal_with_file ("malformed input file (not rel or archive) ", entry);
  1966.       entry->library_flag = 1;
  1967.       search_library (desc, entry);
  1968.     }
  1969.  
  1970.   file_close ();
  1971. }
  1972.  
  1973. /* Enter the external symbol defs and refs of ENTRY in the hash table.  */
  1974.  
  1975. void
  1976. enter_file_symbols (entry)
  1977.      struct file_entry *entry;
  1978. {
  1979.   register struct nlist
  1980.     *p,
  1981.     *end = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  1982.  
  1983.   if (trace_files) prline_file_name (entry, stderr);
  1984.  
  1985.   for (p = entry->symbols; p < end; p++)
  1986.     {
  1987.       if (p->n_type == (N_SETV | N_EXT)) continue;
  1988.       if (set_element_prefixes
  1989.       && set_element_prefixed_p (p->n_un.n_strx + entry->strings))
  1990.     p->n_type += (N_SETA - N_ABS);
  1991.       if (SET_ELEMENT_P (p->n_type))
  1992.     {
  1993.       set_symbol_count++;
  1994.       if (!relocatable_output)
  1995.         enter_global_ref (p, p->n_un.n_strx + entry->strings, entry);
  1996.     }
  1997.       else if (p->n_type == N_WARNING)
  1998.     {
  1999.       char *name = p->n_un.n_strx + entry->strings;
  2000.  
  2001.       /* Grab the next entry.  */
  2002.       p++;
  2003.       if (p->n_type != (N_UNDF | N_EXT))
  2004.         {
  2005.           fprintf (stderr, "%s: Warning symbol found in %s without external reference following.\n",
  2006.                progname, entry->filename);
  2007.           make_executable = 0;
  2008.           p--;        /* Process normally.  */
  2009.         }
  2010.       else
  2011.         {
  2012.           symbol *sp;
  2013.           char *sname = p->n_un.n_strx + entry->strings; 
  2014.           /* Deal with the warning symbol.  */
  2015.           enter_global_ref (p, p->n_un.n_strx + entry->strings, entry);
  2016.           sp = getsym (sname);
  2017.           sp->warning = (char *) xmalloc (strlen(name) + 1);
  2018.           strcpy (sp->warning, name);
  2019.           warning_count++;
  2020.         }
  2021.     }
  2022.       else if (p->n_type & N_EXT)
  2023.     enter_global_ref (p, p->n_un.n_strx + entry->strings, entry);
  2024.       else if (p->n_un.n_strx && !(p->n_type & (N_STAB | N_EXT)))
  2025.     {
  2026.       if ((p->n_un.n_strx + entry->strings)[0] != LPREFIX)
  2027.         non_L_local_sym_count++;
  2028.       local_sym_count++;
  2029.     }
  2030.       else debugger_sym_count++;
  2031.     }
  2032.  
  2033.    /* Count one for the local symbol that we generate,
  2034.       whose name is the file's name (usually) and whose address
  2035.       is the start of the file's text.  */
  2036.  
  2037.   local_sym_count++;
  2038.   non_L_local_sym_count++;
  2039. }
  2040.  
  2041. /* Enter one global symbol in the hash table.
  2042.    NLIST_P points to the `struct nlist' read from the file
  2043.    that describes the global symbol.  NAME is the symbol's name.
  2044.    ENTRY is the file entry for the file the symbol comes from.
  2045.  
  2046.    The `struct nlist' is modified by placing it on a chain of
  2047.    all such structs that refer to the same global symbol.
  2048.    This chain starts in the `refs' field of the symbol table entry
  2049.    and is chained through the `n_name'.  */
  2050. void
  2051. enter_global_ref (nlist_p, name, entry)
  2052.      register struct nlist *nlist_p;
  2053.      char *name;
  2054.      struct file_entry *entry;
  2055. {
  2056.   register symbol *sp = getsym (name);
  2057.   register int type = nlist_p->n_type;
  2058.   int oldref = sp->referenced;
  2059.   int olddef = sp->defined;
  2060.  
  2061.   nlist_p->n_un.n_name = (char *) sp->refs;
  2062.   sp->refs = nlist_p;
  2063.  
  2064.   sp->referenced = 1;
  2065.   if (type != (N_UNDF | N_EXT) || nlist_p->n_value)
  2066.     {
  2067.       if (!sp->defined || sp->defined == (N_UNDF | N_EXT))
  2068.     sp->defined = type;
  2069.  
  2070.       if (oldref && !olddef)
  2071.     /* It used to be undefined and we're defining it.  */
  2072.     undefined_global_sym_count--;
  2073.  
  2074.       if (!olddef && type == (N_UNDF | N_EXT) && nlist_p->n_value)
  2075.     {
  2076.       /* First definition and it's common.  */
  2077.       common_defined_global_count++;
  2078.       sp->max_common_size = nlist_p->n_value;
  2079.     }
  2080.       else if (olddef && sp->max_common_size && type != (N_UNDF | N_EXT))
  2081.     {
  2082.       /* It used to be common and we're defining it as
  2083.          something else.  */
  2084.       common_defined_global_count--;
  2085.       sp->max_common_size = 0;
  2086.     }
  2087.       else if (olddef && sp->max_common_size && type == (N_UNDF | N_EXT)
  2088.       && sp->max_common_size < nlist_p->n_value)
  2089.     /* It used to be common and this is a new common entry to
  2090.        which we need to pay attention.  */
  2091.     sp->max_common_size = nlist_p->n_value;
  2092.  
  2093.       /* Are we defining it as a set element?  */
  2094.       if (SET_ELEMENT_P (type)
  2095.       && (!olddef || (olddef && sp->max_common_size)))
  2096.     set_vector_count++;
  2097.       /* As an indirection?  */
  2098.       else if (type == (N_INDR | N_EXT))
  2099.     {
  2100.       /* Indirect symbols value should be modified to point
  2101.          a symbol being equivalenced to. */
  2102.       nlist_p->n_value =
  2103.         (unsigned int) getsym ((nlist_p + 1)->n_un.n_strx
  2104.                      + entry->strings);
  2105.       if ((symbol *) nlist_p->n_value == sp)
  2106.         {
  2107.           /* Somebody redefined a symbol to be itself.  */
  2108.           fprintf (stderr, "%s: Symbol %s indirected to itself.\n",
  2109.                entry->filename, name);
  2110.           /* Rewrite this symbol as being a global text symbol
  2111.          with value 0.  */
  2112.           nlist_p->n_type = sp->defined = N_TEXT | N_EXT;
  2113.           nlist_p->n_value = 0;
  2114.           /* Don't make the output executable.  */
  2115.           make_executable = 0;
  2116.         }
  2117.       else
  2118.         global_indirect_count++;
  2119.     }
  2120.     }
  2121.   else
  2122.     if (!oldref)
  2123. #ifndef DOLLAR_KLUDGE
  2124.       undefined_global_sym_count++;
  2125. #else
  2126.       {
  2127.     if (entry->superfile && type == (N_UNDF | N_EXT) && name[1] == '$')
  2128.       {
  2129.         /* This is an (ISI?) $-conditional; skip it */
  2130.         sp->referenced = 0;
  2131.         if (sp->trace)
  2132.           {
  2133.         fprintf (stderr, "symbol %s is a $-conditional ignored in ", sp->name);
  2134.         print_file_name (entry, stderr);
  2135.         fprintf (stderr, "\n");
  2136.           }
  2137.         return;
  2138.       }
  2139.     else
  2140.       undefined_global_sym_count++;
  2141.       }
  2142. #endif
  2143.  
  2144.   if (sp == end_symbol && entry->just_syms_flag && !T_flag_specified)
  2145.     text_start = nlist_p->n_value;
  2146.  
  2147.   if (sp->trace)
  2148.     {
  2149.       register char *reftype;
  2150.       switch (type & N_TYPE)
  2151.     {
  2152.     case N_UNDF:
  2153.       if (nlist_p->n_value)
  2154.         reftype = "defined as common";
  2155.       else reftype = "referenced";
  2156.       break;
  2157.  
  2158.     case N_ABS:
  2159.       reftype = "defined as absolute";
  2160.       break;
  2161.  
  2162.     case N_TEXT:
  2163.       reftype = "defined in text section";
  2164.       break;
  2165.  
  2166.     case N_DATA:
  2167.       reftype = "defined in data section";
  2168.       break;
  2169.  
  2170.     case N_BSS:
  2171.       reftype = "defined in BSS section";
  2172.       break;
  2173.  
  2174.     case N_SETT:
  2175.       reftype = "is a text set element";
  2176.       break;
  2177.  
  2178.     case N_SETD:
  2179.       reftype = "is a data set element";
  2180.       break;
  2181.  
  2182.     case N_SETB:
  2183.       reftype = "is a BSS set element";
  2184.       break;
  2185.  
  2186.     case N_SETA:
  2187.       reftype = "is an absolute set element";
  2188.       break;
  2189.  
  2190.     case N_SETV:
  2191.       reftype = "defined in data section as vector";
  2192.       break;
  2193.  
  2194.     case N_INDR:
  2195.       reftype = (char *) alloca (23
  2196.                      + strlen ((nlist_p + 1)->n_un.n_strx
  2197.                            + entry->strings));
  2198.       sprintf (reftype, "defined equivalent to %s",
  2199.            (nlist_p + 1)->n_un.n_strx + entry->strings);
  2200.       break;
  2201.  
  2202. #if TARGET_MACHINE==TARGET_SEQUENT
  2203.     case N_SHUNDF:
  2204.       reftype = "shared undf";
  2205.       break;
  2206.  
  2207. /* These conflict with cases above.
  2208.     case N_SHDATA:
  2209.       reftype = "shared data";
  2210.       break;
  2211.  
  2212.     case N_SHBSS:
  2213.       reftype = "shared BSS";
  2214.       break;
  2215. */
  2216.     default:
  2217.       reftype = "I don't know this type";
  2218.       break;
  2219. #endif
  2220.     }
  2221.  
  2222.       fprintf (stderr, "symbol %s %s in ", sp->name, reftype);
  2223.       print_file_name (entry, stderr);
  2224.       fprintf (stderr, "\n");
  2225.     }
  2226. }
  2227.  
  2228. /* This return 0 if the given file entry's symbol table does *not*
  2229.    contain the nlist point entry, and it returns the files entry
  2230.    pointer (cast to unsigned long) if it does. */
  2231.  
  2232. #if 0
  2233. unsigned long
  2234. contains_symbol (entry, n_ptr)
  2235.      struct file_entry *entry;
  2236.      register struct nlist *n_ptr;
  2237. {
  2238.   if (n_ptr >= entry->symbols &&
  2239.       n_ptr < (entry->symbols
  2240.            + (entry->header.a_syms / sizeof (struct nlist))))
  2241.     return (unsigned long) entry;
  2242.   return 0;
  2243. }
  2244. #endif
  2245.  
  2246.  
  2247. /* Searching libraries */
  2248.  
  2249. struct file_entry *decode_library_subfile ();
  2250. void linear_library (), symdef_library ();
  2251.  
  2252. /* Search the library ENTRY, already open on descriptor DESC.
  2253.    This means deciding which library members to load,
  2254.    making a chain of `struct file_entry' for those members,
  2255.    and entering their global symbols in the hash table.  */
  2256.  
  2257. void
  2258. search_library (desc, entry)
  2259.      int desc;
  2260.      struct file_entry *entry;
  2261. {
  2262.   int member_length;
  2263.   register char *name;
  2264.   register struct file_entry *subentry;
  2265.  
  2266.   if (!undefined_global_sym_count) return;
  2267.  
  2268.   /* Examine its first member, which starts SARMAG bytes in.  */
  2269.   subentry = decode_library_subfile (desc, entry, SARMAG, &member_length);
  2270.   if (!subentry) return;
  2271.  
  2272.   name = subentry->filename;
  2273.   free (subentry);
  2274.  
  2275.   /* Search via __.SYMDEF if that exists, else linearly.  */
  2276.  
  2277.   if (!strcmp (name, "__.SYMDEF"))
  2278.     symdef_library (desc, entry, member_length);
  2279.   else
  2280.     linear_library (desc, entry);
  2281. }
  2282.  
  2283. /* Construct and return a file_entry for a library member.
  2284.    The library's file_entry is library_entry, and the library is open on DESC.
  2285.    SUBFILE_OFFSET is the byte index in the library of this member's header.
  2286.    We store the length of the member into *LENGTH_LOC.  */
  2287.  
  2288. struct file_entry *
  2289. decode_library_subfile (desc, library_entry, subfile_offset, length_loc)
  2290.      int desc;
  2291.      struct file_entry *library_entry;
  2292.      int subfile_offset;
  2293.      int *length_loc;
  2294. {
  2295.   int bytes_read;
  2296.   register int namelen;
  2297.   int member_length;
  2298.   register char *name;
  2299.   struct ar_hdr hdr1;
  2300.   register struct file_entry *subentry;
  2301.  
  2302.   lseek (desc, subfile_offset, 0);
  2303.  
  2304.   bytes_read = read (desc, &hdr1, sizeof hdr1);
  2305.   if (!bytes_read)
  2306.     return 0;        /* end of archive */
  2307.  
  2308.   if (sizeof hdr1 != bytes_read)
  2309.     fatal_with_file ("malformed library archive ", library_entry);
  2310.  
  2311.   if (sscanf (hdr1.ar_size, "%d", &member_length) != 1)
  2312.     fatal_with_file ("malformatted header of archive member in ", library_entry);
  2313.  
  2314.   subentry = (struct file_entry *) xmalloc (sizeof (struct file_entry));
  2315.   bzero (subentry, sizeof (struct file_entry));
  2316.  
  2317.   for (namelen = 0;
  2318.        namelen < sizeof hdr1.ar_name
  2319.        && hdr1.ar_name[namelen] != 0 && hdr1.ar_name[namelen] != ' '
  2320.        && hdr1.ar_name[namelen] != '/';
  2321.        namelen++);
  2322.  
  2323.   name = (char *) xmalloc (namelen+1);
  2324.   strncpy (name, hdr1.ar_name, namelen);
  2325.   name[namelen] = 0;
  2326.  
  2327.   subentry->filename = name;
  2328.   subentry->local_sym_name = name;
  2329.   subentry->symbols = 0;
  2330.   subentry->strings = 0;
  2331.   subentry->subfiles = 0;
  2332.   subentry->starting_offset = subfile_offset + sizeof hdr1;
  2333.   subentry->superfile = library_entry;
  2334.   subentry->library_flag = 0;
  2335.   subentry->header_read_flag = 0;
  2336.   subentry->just_syms_flag = 0;
  2337.   subentry->chain = 0;
  2338.   subentry->total_size = member_length;
  2339.  
  2340.   (*length_loc) = member_length;
  2341.  
  2342.   return subentry;
  2343. }
  2344.  
  2345. int subfile_wanted_p ();
  2346.  
  2347. /* Search a library that has a __.SYMDEF member.
  2348.    DESC is a descriptor on which the library is open.
  2349.      The file pointer is assumed to point at the __.SYMDEF data.
  2350.    ENTRY is the library's file_entry.
  2351.    MEMBER_LENGTH is the length of the __.SYMDEF data.  */
  2352.  
  2353. void
  2354. symdef_library (desc, entry, member_length)
  2355.      int desc;
  2356.      struct file_entry *entry;
  2357.      int member_length;
  2358. {
  2359.   int *symdef_data = (int *) xmalloc (member_length);
  2360.   register struct symdef *symdef_base;
  2361.   char *sym_name_base;
  2362.   int number_of_symdefs;
  2363.   int length_of_strings;
  2364.   int not_finished;
  2365.   int bytes_read;
  2366.   register int i;
  2367.   struct file_entry *prev = 0;
  2368.   int prev_offset = 0;
  2369.  
  2370.   bytes_read = read (desc, symdef_data, member_length);
  2371.   if (bytes_read != member_length)
  2372.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2373. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  2374.   fix_byte_order(symdef_data, sizeof(*symdef_data));
  2375. #endif
  2376.   number_of_symdefs = *symdef_data / sizeof (struct symdef);
  2377.   if (number_of_symdefs < 0 ||
  2378.        number_of_symdefs * sizeof (struct symdef) + 2 * sizeof (int) > member_length)
  2379.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2380.  
  2381.   symdef_base = (struct symdef *) (symdef_data + 1);
  2382. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  2383.   for (i = 0; i < number_of_symdefs; ++i)
  2384.     {
  2385.       fix_byte_order(&symdef_base[i].symbol_name_string_index, sizeof(int));
  2386.       fix_byte_order(&symdef_base[i].library_member_offset, sizeof(int));
  2387.     }
  2388.   fix_byte_order(symdef_base + number_of_symdefs, sizeof(int));
  2389. #endif
  2390.   length_of_strings = *(int *) (symdef_base + number_of_symdefs);
  2391.  
  2392.   if (length_of_strings < 0
  2393.       || number_of_symdefs * sizeof (struct symdef) + length_of_strings
  2394.       + 2 * sizeof (int) != member_length)
  2395.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2396.  
  2397.   sym_name_base = sizeof (int) + (char *) (symdef_base + number_of_symdefs);
  2398.  
  2399.   /* Check all the string indexes for validity.  */
  2400.  
  2401.   for (i = 0; i < number_of_symdefs; i++)
  2402.     {
  2403.       register int index = symdef_base[i].symbol_name_string_index;
  2404.       if (index < 0 || index >= length_of_strings
  2405.       || (index && *(sym_name_base + index - 1)))
  2406.     fatal_with_file ("malformatted __.SYMDEF in ", entry);
  2407.     }
  2408.  
  2409.   /* Search the symdef data for members to load.
  2410.      Do this until one whole pass finds nothing to load.  */
  2411.  
  2412.   not_finished = 1;
  2413.   while (not_finished)
  2414.     {
  2415.       not_finished = 0;
  2416.  
  2417.       /* Scan all the symbols mentioned in the symdef for ones that we need.
  2418.      Load the library members that contain such symbols.  */
  2419.  
  2420.       for (i = 0;
  2421.        (i < number_of_symdefs
  2422.         && (undefined_global_sym_count || common_defined_global_count));
  2423.        i++)
  2424.     if (symdef_base[i].symbol_name_string_index >= 0)
  2425.       {
  2426.         register symbol *sp;
  2427.  
  2428.         sp = getsym_soft (sym_name_base
  2429.                   + symdef_base[i].symbol_name_string_index);
  2430.  
  2431.         /* If we find a symbol that appears to be needed, think carefully
  2432.            about the archive member that the symbol is in.  */
  2433.  
  2434.         if (sp && ((sp->referenced && !sp->defined)
  2435. #if 1        
  2436.                || (sp->defined && sp->max_common_size))
  2437. #endif
  2438.                )
  2439.           {
  2440.         int junk;
  2441.         register int j;
  2442.         register int offset = symdef_base[i].library_member_offset;
  2443.         struct file_entry *subentry;
  2444.  
  2445.         /* Don't think carefully about any archive member
  2446.            more than once in a given pass.  */
  2447.  
  2448.         if (prev_offset == offset)
  2449.           continue;
  2450.         prev_offset = offset;
  2451.  
  2452.         /* Read the symbol table of the archive member.  */
  2453.  
  2454.         subentry = decode_library_subfile (desc, entry, offset, &junk);
  2455.         if (subentry == 0)
  2456.           fatal ("invalid offset for %s in symbol table of %s",
  2457.              sym_name_base
  2458.              + symdef_base[i].symbol_name_string_index,
  2459.              entry->filename);
  2460.         read_entry_symbols (desc, subentry);
  2461.         subentry->strings = (char *) malloc (subentry->string_size);
  2462.         read_entry_strings (desc, subentry);
  2463.  
  2464.         /* Now scan the symbol table and decide whether to load.  */
  2465.  
  2466.         if (!subfile_wanted_p (subentry))
  2467.           {
  2468.             free (subentry->symbols);
  2469.             free (subentry);
  2470.           }
  2471.         else
  2472.           {
  2473.             /* This member is needed; load it.
  2474.                Since we are loading something on this pass,
  2475.                we must make another pass through the symdef data.  */
  2476.  
  2477.             not_finished = 1;
  2478.  
  2479.             enter_file_symbols (subentry);
  2480.  
  2481.             if (prev)
  2482.               prev->chain = subentry;
  2483.             else entry->subfiles = subentry;
  2484.             prev = subentry;
  2485.  
  2486.             /* Clear out this member's symbols from the symdef data
  2487.                so that following passes won't waste time on them.  */
  2488.  
  2489.             for (j = 0; j < number_of_symdefs; j++)
  2490.               {
  2491.             if (symdef_base[j].library_member_offset == offset)
  2492.               symdef_base[j].symbol_name_string_index = -1;
  2493.               }
  2494.           }
  2495.  
  2496.         /* We'll read the strings again if we need them again.  */
  2497.         free (subentry->strings);
  2498.         subentry->strings = 0;
  2499.           }
  2500.       }
  2501.     }
  2502.  
  2503.   free (symdef_data);
  2504. }
  2505.  
  2506.  
  2507. /* Handle a subentry for a file with no __.SYMDEF. */
  2508.  
  2509. process_subentry (desc, subentry, entry, prev_addr)
  2510.      int desc;
  2511.      register struct file_entry *subentry;
  2512.      struct file_entry **prev_addr, *entry;
  2513. {
  2514.   register struct file_entry *prev = *prev_addr;
  2515.  
  2516.   read_entry_symbols (desc, subentry);
  2517.   subentry->strings = (char *) alloca (subentry->string_size);
  2518.   read_entry_strings (desc, subentry);
  2519.  
  2520.   if (!subfile_wanted_p (subentry))
  2521.     {
  2522.       free (subentry->symbols);
  2523.       free (subentry);
  2524.     }
  2525.   else
  2526.     {
  2527.       enter_file_symbols (subentry);
  2528.  
  2529.       if (prev)
  2530.     prev->chain = subentry;
  2531.       else
  2532.     entry->subfiles = subentry;
  2533.       prev = subentry;
  2534.       subentry->strings = 0; /* Since space will dissapear on return */
  2535.     }
  2536. }
  2537.  
  2538. /* Search a library that has no __.SYMDEF.
  2539.    ENTRY is the library's file_entry.
  2540.    DESC is the descriptor it is open on.  */
  2541.  
  2542. void
  2543. linear_library (desc, entry)
  2544.      int desc;
  2545.      struct file_entry *entry;
  2546. {
  2547.   struct file_entry *prev = 0;
  2548.   register int this_subfile_offset = SARMAG;
  2549.  
  2550.   while (undefined_global_sym_count || common_defined_global_count)
  2551.     {
  2552.       int member_length;
  2553.       register struct file_entry *subentry;
  2554.  
  2555.       subentry = decode_library_subfile (desc, entry, this_subfile_offset,
  2556.                      &member_length);
  2557.       if (!subentry) return;
  2558.  
  2559.       process_subentry (desc, subentry, entry, &prev);
  2560.       this_subfile_offset += member_length + sizeof (struct ar_hdr);
  2561.       if (this_subfile_offset & 1) this_subfile_offset++;
  2562.     }
  2563. }
  2564.  
  2565. /* ENTRY is an entry for a library member.
  2566.    Its symbols have been read into core, but not entered.
  2567.    Return nonzero if we ought to load this member.  */
  2568. int
  2569. subfile_wanted_p (entry)
  2570.      struct file_entry *entry;
  2571. {
  2572.   register struct nlist *p;
  2573.   register struct nlist *end
  2574.     = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  2575. #ifdef DOLLAR_KLUDGE
  2576.   register int dollar_cond = 0;
  2577. #endif
  2578.  
  2579.   for (p = entry->symbols; p < end; p++)
  2580.     {
  2581.       register int type = p->n_type;
  2582.       register char *name = p->n_un.n_strx + entry->strings;
  2583.  
  2584.       /* If the symbol has an interesting definition, we could
  2585.      potentially want it.  */
  2586.       if (type & N_EXT
  2587.       && (type != (N_UNDF | N_EXT) || p->n_value
  2588.  
  2589. #ifdef DOLLAR_KLUDGE
  2590.            || name[1] == '$'
  2591. #endif
  2592.           )
  2593.       && !SET_ELEMENT_P (type)
  2594.       && !set_element_prefixed_p (name))
  2595.     {
  2596.       register symbol *sp = getsym_soft (name);
  2597.  
  2598. #ifdef DOLLAR_KLUDGE
  2599.       if (name[1] == '$')
  2600.         {
  2601.           sp = getsym_soft (&name[2]);
  2602.           dollar_cond = 1;
  2603.           if (!sp) continue;
  2604.           if (sp->referenced)
  2605.         {
  2606.           if (write_map)
  2607.             {
  2608.               print_file_name (entry, stdout);
  2609.               fprintf (stdout, " needed due to $-conditional %s\n", name);
  2610.             }
  2611.           return 1;
  2612.         }
  2613.           continue;
  2614.         }
  2615. #endif
  2616.  
  2617.       /* If this symbol has not been hashed, we can't be looking for it. */
  2618.  
  2619.       if (!sp) continue;
  2620.  
  2621.       if ((sp->referenced && !sp->defined)
  2622.           || (sp->defined && sp->max_common_size))
  2623.         {
  2624.           /* This is a symbol we are looking for.  It is either
  2625.              not yet defined or defined as a common.  */
  2626. #ifdef DOLLAR_KLUDGE
  2627.           if (dollar_cond) continue;
  2628. #endif
  2629.           if (type == (N_UNDF | N_EXT))
  2630.         {
  2631.           /* Symbol being defined as common.
  2632.              Remember this, but don't load subfile just for this.  */
  2633.           /* If it didn't used to be common, up the count of
  2634.              common symbols.  */
  2635.           if (!sp->max_common_size)
  2636.             common_defined_global_count++;
  2637.           if (sp->max_common_size < p->n_value)
  2638.             sp->max_common_size = p->n_value;
  2639.           if (!sp->defined)
  2640.             undefined_global_sym_count--;
  2641.           sp->defined = 1;
  2642.           continue;
  2643.         }
  2644.  
  2645. #if TARGET==TARGET_SEQUENT
  2646.         /* Don't resolve common (data) symbols with text symbols*/
  2647.           if (type == (N_EXT | N_TEXT)) {
  2648.         int dontresolve = 0;
  2649.         struct nlist *p, *next;
  2650.  
  2651.         for (p = sp->refs; p; p = next) {
  2652.           if (p->n_value && (p->n_type == (N_UNDF | N_EXT))) {
  2653.               if (trace_files)
  2654.                   fprintf(stdout,
  2655.                       "refs check fail: symbol %s, ref type= 0x%x, ref value= 0x%x, sym type = 0x%x\n",
  2656.                       sp->name, p->n_type, p->n_value, type);
  2657.             dontresolve = 1;
  2658.             break;
  2659.           }
  2660.           next = (struct nlist *) p->n_un.n_name;
  2661.         }
  2662.         if (sp->trace) {
  2663.           fprintf(stdout, 
  2664.             "symbol %s can't use text sym def in file ", sp->name);
  2665.           print_file_name(entry, stdout);
  2666.           fprintf(stdout, "\n");
  2667.         }
  2668.         if (dontresolve)
  2669.           continue;
  2670.           }
  2671. #endif        
  2672.           if (write_map)
  2673.         {
  2674.           print_file_name (entry, stdout);
  2675.           fprintf (stdout, " needed due to %s\n", sp->name);
  2676.         }
  2677.           return 1;
  2678.         }
  2679.     }
  2680.     }
  2681.  
  2682.   return 0;
  2683. }
  2684.  
  2685. void consider_file_section_lengths (), relocate_file_addresses ();
  2686.  
  2687. /* Having entered all the global symbols and found the sizes of sections
  2688.    of all files to be linked, make all appropriate deductions from this data.
  2689.  
  2690.    We propagate global symbol values from definitions to references.
  2691.    We compute the layout of the output file and where each input file's
  2692.    contents fit into it.  */
  2693.  
  2694. void
  2695. digest_symbols ()
  2696. {
  2697.   register int i;
  2698.   int setv_fill_count = 0;
  2699.  
  2700.   if (trace_files)
  2701.     fprintf (stderr, "Digesting symbol information:\n\n");
  2702.  
  2703.   /* Compute total size of sections */
  2704.  
  2705.   each_file (consider_file_section_lengths, 0);
  2706.  
  2707.   /* If necessary, pad text section to full page in the file.
  2708.      Include the padding in the text segment size.  */
  2709.  
  2710. #ifdef NMAGIC
  2711.   if (magic == ZMAGIC || magic == NMAGIC)
  2712. #else /* NMAGIC */
  2713. #ifdef SMAGIC
  2714.   if (magic == ZMAGIC || magic == SMAGIC)
  2715. #else /* SMAGIC */
  2716.   if (magic == ZMAGIC)
  2717. #endif /* SMAGIC */
  2718. #endif /* NMAGIC */
  2719.     {
  2720.       int text_end = text_size + N_TXTOFF (outheader);
  2721.       text_pad = ((text_end + page_size - 1) & (- page_size)) - text_end;
  2722.       text_size += text_pad;
  2723.     }
  2724.  
  2725.   outheader.a_text = text_size;
  2726. #if TARGET_MACHINE==TARGET_SEQUENT
  2727.   outheader.a_text += N_ADDRADJ (outheader);
  2728. #endif
  2729.  
  2730.   /* Make the data segment address start in memory on a suitable boundary.  */
  2731.  
  2732.   if (! Tdata_flag_specified)
  2733.     data_start = N_DATADDR (outheader) + text_start - N_TXTADDR (outheader);
  2734. #ifdef foobar
  2735.   /* Make sure bss starts out aligned as much as anyone can want.  */
  2736.  
  2737.   data_size = (data_size + sizeof(double) - 1) & ~(sizeof(double)-1);
  2738. #endif
  2739.  
  2740.   if (Z_flag_specified)
  2741.       data_start += data_gap;
  2742.  
  2743.   /* Set up the set element vector */
  2744.  
  2745.   if (!relocatable_output)
  2746.     {
  2747.       /* The set sector size is the number of set elements + a word
  2748.          for each symbol for the length word at the beginning of the
  2749.      vector, plus a word for each symbol for a zero at the end of
  2750.      the vector (for incremental linking).  */
  2751.       set_sect_size =
  2752.         (2 * set_symbol_count + set_vector_count) * sizeof (unsigned long);
  2753.       set_sect_start = data_start + data_size;
  2754.       data_size += set_sect_size;
  2755.       set_vectors = (unsigned long *) xmalloc (set_sect_size);
  2756. #if 1
  2757.       setv_fill_count = 0;
  2758. #endif      
  2759.     }
  2760.  
  2761.   /* Compute start addresses of each file's sections and symbols.  */
  2762.  
  2763.   each_full_file (relocate_file_addresses, 0);
  2764.  
  2765.   /* Now, for each symbol, verify that it is defined globally at most once.
  2766.      Put the global value into the symbol entry.
  2767.      Common symbols are allocated here, in the BSS section.
  2768.      Each defined symbol is given a '->defined' field
  2769.       which is the correct N_ code for its definition,
  2770.       except in the case of common symbols with -r.
  2771.      Then make all the references point at the symbol entry
  2772.      instead of being chained together. */
  2773.  
  2774.   defined_global_sym_count = 0;
  2775.  
  2776.   for (i = 0; i < TABSIZE; i++)
  2777.     {
  2778.       register symbol *sp;
  2779.       for (sp = symtab[i]; sp; sp = sp->link)
  2780.     {
  2781.       /* For each symbol */
  2782.       register struct nlist *p, *next;
  2783.       int defs = 0, com = sp->max_common_size;
  2784.       struct nlist *first_definition;
  2785.       for (p = sp->refs; p; p = next)
  2786.         {
  2787.           register int type = p->n_type;
  2788.  
  2789.           if (SET_ELEMENT_P (type))
  2790.         {
  2791.           if (relocatable_output)
  2792.             fatal ("internal: global ref to set element with -r");
  2793.           if (!defs++)
  2794.             {
  2795.               sp->value = set_sect_start
  2796.             + setv_fill_count++ * sizeof (unsigned long);
  2797.               sp->defined = N_SETV | N_EXT;
  2798.               first_definition = p;
  2799.             }
  2800.           else if ((sp->defined & ~N_EXT) != N_SETV)
  2801.             {
  2802.               sp->multiply_defined = 1;
  2803.               multiple_def_count++;
  2804.             }
  2805.           set_vectors[setv_fill_count++] = p->n_value;
  2806.         }
  2807.           else if ((type & N_EXT) && type != (N_UNDF | N_EXT))
  2808.         {
  2809.           /* non-common definition */
  2810.           if (defs++ && sp->value != p->n_value)
  2811.             {
  2812.               sp->multiply_defined = 1;
  2813.               multiple_def_count++;
  2814.             }
  2815.           sp->value = p->n_value;
  2816.           sp->defined = type;
  2817.           first_definition = p;
  2818.         }
  2819.           next = (struct nlist *) p->n_un.n_name;
  2820.           p->n_un.n_name = (char *) sp;
  2821.         }
  2822.       /* Allocate as common if defined as common and not defined for real */
  2823.       if (com && !defs)
  2824.         {
  2825.           if (!relocatable_output || force_common_definition)
  2826.         {
  2827.           int align = sizeof (int);
  2828.  
  2829.           /* Round up to nearest sizeof (int).  I don't know
  2830.              whether this is necessary or not (given that
  2831.              alignment is taken care of later), but it's
  2832.              traditional, so I'll leave it in.  Note that if
  2833.              this size alignment is ever removed, ALIGN above
  2834.              will have to be initialized to 1 instead of
  2835.              sizeof (int).  */
  2836.           
  2837.           com = (com + sizeof (int) - 1) & (- sizeof (int));
  2838.  
  2839.           while (!(com & align))
  2840.             align <<= 1;
  2841.  
  2842.           align = align > MAX_ALIGNMENT ? MAX_ALIGNMENT : align;
  2843.  
  2844.           bss_size = ((((bss_size + data_size + data_start)
  2845.                   + (align - 1)) & (- align))
  2846.                   - data_size - data_start);
  2847.  
  2848.           sp->value = data_start + data_size + bss_size;
  2849.           sp->defined = N_BSS | N_EXT;
  2850.           bss_size += com;
  2851.           if (write_map)
  2852.             printf ("Allocating common %s: %x at %x\n",
  2853.                 sp->name, com, sp->value);
  2854.         }
  2855.           else
  2856.         {
  2857.           sp->defined = 0;
  2858.           undefined_global_sym_count++;
  2859.         }
  2860.         }
  2861.       /* Set length word at front of vector and zero byte at end.
  2862.          Reverse the vector itself to put it in file order.  */
  2863.       if ((sp->defined & ~N_EXT) == N_SETV)
  2864.         {
  2865.           unsigned long length_word_index =
  2866.             (sp->value - set_sect_start) / sizeof (unsigned long);
  2867.           unsigned long i, tmp;
  2868.  
  2869.           set_vectors[length_word_index] =
  2870.             setv_fill_count - 1 - length_word_index;
  2871.           /* Reverse the vector.  */
  2872.           for (i = 1;
  2873.            i < (setv_fill_count - length_word_index - 1) / 2 + 1;
  2874.            i++)
  2875.         {
  2876.           tmp = set_vectors[length_word_index + i];
  2877.           set_vectors[length_word_index + i] =
  2878.             set_vectors[setv_fill_count - i];
  2879.           set_vectors[setv_fill_count - i] = tmp;
  2880.         }
  2881.  
  2882.           set_vectors[setv_fill_count++] = 0;
  2883.         }
  2884.       if (sp->defined)
  2885.         defined_global_sym_count++;
  2886.     }
  2887.     }
  2888.  
  2889. #ifdef foobar
  2890.   /* Make sure end of bss is aligned as much as anyone can want.  */
  2891.  
  2892.   bss_size = (bss_size + sizeof(double) - 1) & ~(sizeof(double)-1);
  2893. #endif
  2894.  
  2895.   if (end_symbol)        /* These are null if -r.  */
  2896.     {
  2897.       etext_symbol->value = text_size + text_start;
  2898.       edata_symbol->value = data_start + data_size;
  2899.       end_symbol->value = data_start + data_size + bss_size;
  2900.     }
  2901.  
  2902.   /* Figure the data_pad now, so that it overlaps with the bss addresses.  */
  2903.  
  2904.   if (specified_data_size && specified_data_size > data_size)
  2905.     data_pad = specified_data_size - data_size;
  2906.  
  2907. #ifdef SMAGIC
  2908.   if (magic == SMAGIC || magic == ZMAGIC)
  2909. #else
  2910.   if (magic == ZMAGIC)
  2911. #endif
  2912.     data_pad = ((data_pad + data_size + page_size - 1) & (- page_size))
  2913.     - data_size;
  2914.  
  2915.   bss_size -= data_pad;
  2916.   if (bss_size < 0) bss_size = 0;
  2917.  
  2918.   data_size += data_pad;
  2919. }
  2920.  
  2921. /* Accumulate the section sizes of input file ENTRY
  2922.    into the section sizes of the output file.  */
  2923.  
  2924. void
  2925. consider_file_section_lengths (entry)
  2926.      register struct file_entry *entry;
  2927. {
  2928.   if (entry->just_syms_flag)
  2929.     return;
  2930.  
  2931.   entry->text_start_address = text_size;
  2932.   /* If there were any vectors, we need to chop them off */
  2933.   text_size += entry->header.a_text;
  2934.   entry->data_start_address = data_size;
  2935.   data_size += entry->header.a_data;
  2936.   entry->bss_start_address = bss_size;
  2937.   bss_size += entry->header.a_bss;
  2938.  
  2939.   text_reloc_size += entry->header.a_trsize;
  2940.   data_reloc_size += entry->header.a_drsize;
  2941. }
  2942.  
  2943. /* Determine where the sections of ENTRY go into the output file,
  2944.    whose total section sizes are already known.
  2945.    Also relocate the addresses of the file's local and debugger symbols.  */
  2946.  
  2947. void
  2948. relocate_file_addresses (entry)
  2949.      register struct file_entry *entry;
  2950. {
  2951.   entry->text_start_address += text_start;
  2952.   /* Note that `data_start' and `data_size' have not yet been
  2953.      adjusted for `data_pad'.  If they had been, we would get the wrong
  2954.      results here.  */
  2955.   entry->data_start_address += data_start;
  2956.   entry->bss_start_address += data_start + data_size;
  2957.  
  2958.   {
  2959.     register struct nlist *p;
  2960.     register struct nlist *end
  2961.       = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  2962.  
  2963.     for (p = entry->symbols; p < end; p++)
  2964.       {
  2965.     /* If this belongs to a section, update it by the section's start address */
  2966.     register int type = p->n_type & N_TYPE;
  2967.  
  2968.     switch (type)
  2969.       {
  2970.       case N_TEXT:
  2971.       case N_SETT:
  2972.         p->n_value += entry->text_start_address;
  2973.         break;
  2974.       case N_DATA:
  2975.       case N_SETV:
  2976.       case N_SETD:
  2977.         /* A symbol whose value is in the data section
  2978.            is present in the input file as if the data section
  2979.            started at an address equal to the length of the file's text.  */
  2980.         p->n_value += entry->data_start_address - entry->header.a_text;
  2981.         break;
  2982.       case N_BSS:
  2983.       case N_SETB:
  2984.         /* likewise for symbols with value in BSS.  */
  2985.         p->n_value += entry->bss_start_address
  2986.           - entry->header.a_text - entry->header.a_data;
  2987.         break;
  2988.       }
  2989.       }
  2990.   }
  2991. }
  2992.  
  2993. void describe_file_sections (), list_file_locals ();
  2994.  
  2995. /* Print a complete or partial map of the output file.  */
  2996.  
  2997. void
  2998. print_symbols (outfile)
  2999.      FILE *outfile;
  3000. {
  3001.   register int i;
  3002.  
  3003.   fprintf (outfile, "\nFiles:\n\n");
  3004.  
  3005.   each_file (describe_file_sections, outfile);
  3006.  
  3007.   fprintf (outfile, "\nGlobal symbols:\n\n");
  3008.  
  3009.   for (i = 0; i < TABSIZE; i++)
  3010.     {
  3011.       register symbol *sp;
  3012.       for (sp = symtab[i]; sp; sp = sp->link)
  3013.     {
  3014.       if (sp->defined == 1)
  3015.         fprintf (outfile, "  %s: common, length 0x%x\n", sp->name, sp->max_common_size);
  3016.       if (sp->defined)
  3017.         fprintf (outfile, "  %s: 0x%x\n", sp->name, sp->value);
  3018.       else if (sp->referenced)
  3019.         fprintf (outfile, "  %s: undefined\n", sp->name);
  3020.     }
  3021.     }
  3022.  
  3023.   each_file (list_file_locals, outfile);
  3024. }
  3025.  
  3026. void
  3027. describe_file_sections (entry, outfile)
  3028.      struct file_entry *entry;
  3029.      FILE *outfile;
  3030. {
  3031.   fprintf (outfile, "  ");
  3032.   print_file_name (entry, outfile);
  3033.   if (entry->just_syms_flag)
  3034.     fprintf (outfile, " symbols only\n", 0);
  3035.   else
  3036.     fprintf (outfile, " text %x(%x), data %x(%x), bss %x(%x) hex\n",
  3037.          entry->text_start_address, entry->header.a_text,
  3038.          entry->data_start_address, entry->header.a_data,
  3039.          entry->bss_start_address, entry->header.a_bss);
  3040. }
  3041.  
  3042. void
  3043. list_file_locals (entry, outfile)
  3044.      struct file_entry *entry;
  3045.      FILE *outfile;
  3046. {
  3047.   register struct nlist
  3048.     *p,
  3049.     *end = entry->symbols + entry->header.a_syms / sizeof (struct nlist);
  3050.  
  3051.   entry->strings = (char *) alloca (entry->string_size);
  3052.   read_entry_strings (file_open (entry), entry);
  3053.  
  3054.   fprintf (outfile, "\nLocal symbols of ");
  3055.   print_file_name (entry, outfile);
  3056.   fprintf (outfile, ":\n\n");
  3057.  
  3058.   for (p = entry->symbols; p < end; p++)
  3059.     /* If this is a definition,
  3060.        update it if necessary by this file's start address.  */
  3061.     if (!(p->n_type & (N_STAB | N_EXT)))
  3062.       fprintf (outfile, "  %s: 0x%x\n",
  3063.            entry->strings + p->n_un.n_strx, p->n_value);
  3064.  
  3065.   entry->strings = 0;        /* All done with them.  */
  3066. }
  3067.  
  3068.  
  3069. /* Static vars for do_warnings and subroutines of it */
  3070. int list_unresolved_refs;    /* List unresolved refs */
  3071. int list_warning_symbols;    /* List warning syms */
  3072. int list_multiple_defs;        /* List multiple definitions */
  3073.  
  3074. /*
  3075.  * Structure for communication between do_file_warnings and it's
  3076.  * helper routines.  Will in practice be an array of three of these:
  3077.  * 0) Current line, 1) Next line, 2) Source file info.
  3078.  */
  3079. struct line_debug_entry
  3080. {
  3081.   int line;
  3082.   char *filename;
  3083.   struct nlist *Sym;
  3084. };
  3085.  
  3086. void qsort ();
  3087. /*
  3088.  * Helper routines for do_file_warnings.
  3089.  */
  3090.  
  3091. /* Return an integer less than, equal to, or greater than 0 as per the
  3092.    relation between the two relocation entries.  Used by qsort.  */
  3093.  
  3094. int
  3095. relocation_entries_relation (rel1, rel2)
  3096.      struct relocation_info *rel1, *rel2;
  3097. {
  3098.   return RELOC_ADDRESS(rel1) - RELOC_ADDRESS(rel2);
  3099. }
  3100.  
  3101. /* Moves to the next debugging symbol in the file.  USE_DATA_SYMBOLS
  3102.    determines the type of the debugging symbol to look for (DSLINE or
  3103.    SLINE).  STATE_POINTER keeps track of the old and new locatiosn in
  3104.    the file.  It assumes that state_pointer[1] is valid; ie
  3105.    that it.sym points into some entry in the symbol table.  If
  3106.    state_pointer[1].sym == 0, this routine should not be called.  */
  3107.  
  3108. int
  3109. next_debug_entry (use_data_symbols, state_pointer)
  3110.      register int use_data_symbols;
  3111.      /* Next must be passed by reference! */
  3112.      struct line_debug_entry state_pointer[3];
  3113. {
  3114.   register struct line_debug_entry
  3115.     *current = state_pointer,
  3116.     *next = state_pointer + 1,
  3117.     /* Used to store source file */
  3118.     *source = state_pointer + 2;
  3119.   struct file_entry *entry = (struct file_entry *) source->Sym;
  3120.  
  3121.   current->Sym = next->Sym;
  3122.   current->line = next->line;
  3123.   current->filename = next->filename;
  3124.  
  3125.   while (++(next->Sym) < (entry->symbols
  3126.               + entry->header.a_syms/sizeof (struct nlist)))
  3127.     {
  3128.       /* n_type is a char, and N_SOL, N_EINCL and N_BINCL are > 0x80, so
  3129.        * may look negative...therefore, must mask to low bits
  3130.        */
  3131.       switch (next->Sym->n_type & 0xff) 
  3132.     {
  3133.     case N_SLINE:
  3134.       if (use_data_symbols) continue;
  3135.       next->line = next->Sym->n_desc;
  3136.       return 1;
  3137.     case N_DSLINE:
  3138.       if (!use_data_symbols) continue;
  3139.       next->line = next->Sym->n_desc;
  3140.       return 1;
  3141. #ifdef HAVE_SUN_STABS
  3142.     case N_EINCL:
  3143.       next->filename = source->filename;
  3144.       continue;
  3145. #endif
  3146.     case N_SO:
  3147.       source->filename = next->Sym->n_un.n_strx + entry->strings;
  3148.       source->line++;
  3149. #ifdef HAVE_SUN_STABS
  3150.     case N_BINCL:
  3151. #endif
  3152.     case N_SOL:
  3153.       next->filename =
  3154.         next->Sym->n_un.n_strx + entry->strings;
  3155.     default:
  3156.       continue;
  3157.     }
  3158.     }
  3159.   next->Sym = (struct nlist *) 0;
  3160.   return 0;
  3161. }
  3162.  
  3163. /* Create a structure to save the state of a scan through the debug
  3164.    symbols.  USE_DATA_SYMBOLS is set if we should be scanning for
  3165.    DSLINE's instead of SLINE's.  entry is the file entry which points
  3166.    at the symbols to use.  */
  3167.  
  3168. struct line_debug_entry *
  3169. init_debug_scan (use_data_symbols, entry)
  3170.      int use_data_symbols;
  3171.      struct file_entry *entry;
  3172. {
  3173.   struct line_debug_entry
  3174.     *state_pointer =
  3175.         (struct line_debug_entry *)
  3176.         xmalloc (3 * sizeof (struct line_debug_entry));
  3177.   register struct line_debug_entry
  3178.     *current = state_pointer,
  3179.     *next = state_pointer + 1,
  3180.     *source = state_pointer + 2; /* Used to store source file */
  3181.  
  3182.   struct nlist *tmp;
  3183.  
  3184.   for (tmp = entry->symbols;
  3185.        tmp < (entry->symbols
  3186.           + entry->header.a_syms/sizeof (struct nlist));
  3187.        tmp++)
  3188.     if (tmp->n_type == (int) N_SO)
  3189.       break;
  3190.  
  3191.   if (tmp >= (entry->symbols
  3192.           + entry->header.a_syms/sizeof (struct nlist)))
  3193.     {
  3194.       /* I believe this translates to "We lose" */
  3195.       current->filename = next->filename = entry->filename;
  3196.       current->line = next->line = -1;
  3197.       current->Sym = next->Sym = (struct nlist *) 0;
  3198.       return state_pointer;
  3199.     }
  3200.  
  3201.   next->line = source->line = 0;
  3202.   next->filename = source->filename
  3203.     = (tmp->n_un.n_strx + entry->strings);
  3204.   source->Sym = (struct nlist *) entry;
  3205.   next->Sym = tmp;
  3206.  
  3207.   next_debug_entry (use_data_symbols, state_pointer); /* To setup next */
  3208.  
  3209.   if (!next->Sym)        /* No line numbers for this section; */
  3210.                 /* setup output results as appropriate */
  3211.     {
  3212.       if (source->line)
  3213.     {
  3214.       current->filename = source->filename = entry->filename;
  3215.       current->line = -1;    /* Don't print lineno */
  3216.     }
  3217.       else
  3218.     {
  3219.       current->filename = source->filename;
  3220.       current->line = 0;
  3221.     }
  3222.       return state_pointer;
  3223.     }
  3224.  
  3225.  
  3226.   next_debug_entry (use_data_symbols, state_pointer); /* To setup current */
  3227.  
  3228.   return state_pointer;
  3229. }
  3230.  
  3231. /* Takes an ADDRESS (in either text or data space) and a STATE_POINTER
  3232.    which describes the current location in the implied scan through
  3233.    the debug symbols within the file which ADDRESS is within, and
  3234.    returns the source line number which corresponds to ADDRESS.  */
  3235.   
  3236. int
  3237. address_to_line (address, state_pointer)
  3238.      unsigned long address;
  3239.      /* Next must be passed by reference! */
  3240.      struct line_debug_entry state_pointer[3];
  3241. {
  3242.   struct line_debug_entry
  3243.     *current = state_pointer,
  3244.     *next = state_pointer + 1;
  3245.   struct line_debug_entry *tmp_pointer;
  3246.  
  3247.   int use_data_symbols;
  3248.  
  3249.   if (next->Sym)
  3250.     use_data_symbols = (next->Sym->n_type & N_TYPE) == N_DATA;
  3251.   else
  3252.     return current->line;
  3253.  
  3254.   /* Go back to the beginning if we've already passed it.  */
  3255.   if (current->Sym->n_value > address)
  3256.     {
  3257.       tmp_pointer = init_debug_scan (use_data_symbols,
  3258.                      (struct file_entry *)
  3259.                      ((state_pointer + 2)->Sym));
  3260.       state_pointer[0] = tmp_pointer[0];
  3261.       state_pointer[1] = tmp_pointer[1];
  3262.       state_pointer[2] = tmp_pointer[2];
  3263.       free (tmp_pointer);
  3264.     }
  3265.  
  3266.   /* If we're still in a bad way, return -1, meaning invalid line.  */
  3267.   if (current->Sym->n_value > address)
  3268.     return -1;
  3269.  
  3270.   while (next->Sym
  3271.      && next->Sym->n_value <= address
  3272.      && next_debug_entry (use_data_symbols, state_pointer))
  3273.     ;
  3274.   return current->line;
  3275. }
  3276.  
  3277.  
  3278. /* Macros for manipulating bitvectors.  */
  3279. #define    BIT_SET_P(bv, index)    ((bv)[(index) >> 3] & 1 << ((index) & 0x7))
  3280. #define    SET_BIT(bv, index)    ((bv)[(index) >> 3] |= 1 << ((index) & 0x7))
  3281.  
  3282. /* This routine will scan through the relocation data of file ENTRY,
  3283.    printing out references to undefined symbols and references to
  3284.    symbols defined in files with N_WARNING symbols.  If DATA_SEGMENT
  3285.    is non-zero, it will scan the data relocation segment (and use
  3286.    N_DSLINE symbols to track line number); otherwise it will scan the
  3287.    text relocation segment.  Warnings will be printed on the output
  3288.    stream OUTFILE.  Eventually, every nlist symbol mapped through will
  3289.    be marked in the NLIST_BITVECTOR, so we don't repeat ourselves when
  3290.    we scan the nlists themselves.  */
  3291.  
  3292. do_relocation_warnings (entry, data_segment, outfile, nlist_bitvector)
  3293.      struct file_entry *entry;
  3294.      int data_segment;
  3295.      FILE *outfile;
  3296.      unsigned char *nlist_bitvector;
  3297. {
  3298.   struct relocation_info
  3299.     *reloc_start = data_segment ? entry->datarel : entry->textrel,
  3300.     *reloc;
  3301.   int reloc_size =
  3302.     (data_segment ? entry->header.a_drsize : entry->header.a_trsize)
  3303.        / sizeof (struct relocation_info);
  3304.   int start_of_segment =
  3305.     (data_segment ? entry->data_start_address : entry->text_start_address);
  3306.   struct nlist *start_of_syms = entry->symbols;
  3307.   struct line_debug_entry *state_pointer =
  3308.     init_debug_scan (data_segment != 0, entry);
  3309.   register struct line_debug_entry
  3310.     *current = state_pointer;
  3311.   /* Assigned to generally static values; should not be written into.  */
  3312.   char *errfmt;
  3313.   /* Assigned to alloca'd values cand copied into; should be freed
  3314.      when done.  */
  3315.   char *errmsg;
  3316.   int invalidate_line_number;
  3317.  
  3318.   /* We need to sort the relocation info here.  Sheesh, so much effort
  3319.      for one lousy error optimization. */
  3320.  
  3321.   qsort (reloc_start, reloc_size, sizeof (struct relocation_info),
  3322.      relocation_entries_relation);
  3323.  
  3324.   for (reloc = reloc_start;
  3325.        reloc < (reloc_start + reloc_size);
  3326.        reloc++)
  3327.     {
  3328.       register struct nlist *s;
  3329.       register symbol *g;
  3330.  
  3331.       /* If the relocation isn't resolved through a symbol, continue */
  3332.       if (!RELOC_EXTERN_P(reloc))
  3333.     continue;
  3334.  
  3335.       s = &(entry->symbols[RELOC_SYMBOL(reloc)]);
  3336.  
  3337.       /* Local symbols shouldn't ever be used by relocation info, so
  3338.      the next should be safe.
  3339.      This is, of course, wrong.  References to local BSS symbols can be
  3340.      the targets of relocation info, and they can (must) be
  3341.      resolved through symbols.  However, these must be defined properly,
  3342.      (the assembler would have caught it otherwise), so we can
  3343.      ignore these cases.  */
  3344.       if (!(s->n_type & N_EXT))
  3345.     continue;
  3346.  
  3347.       g = (symbol *) s->n_un.n_name;
  3348.       errmsg = 0;
  3349.  
  3350.       if (!g->defined && list_unresolved_refs) /* Reference */
  3351.     {
  3352.       /* Mark as being noted by relocation warning pass.  */
  3353.       SET_BIT (nlist_bitvector, s - start_of_syms);
  3354.       
  3355.       if (g->undef_refs >= MAX_UREFS_PRINTED)    /* Listed too many */
  3356.         continue;
  3357.  
  3358.       /* Undefined symbol which we should mention */
  3359.  
  3360.       if (++(g->undef_refs) == MAX_UREFS_PRINTED)
  3361.         {
  3362.           errfmt = "More undefined symbol %s refs follow";
  3363.           invalidate_line_number = 1;
  3364.         }
  3365.       else
  3366.         {
  3367.           errfmt = "Undefined symbol %s referenced from %s segment";
  3368.           invalidate_line_number = 0;
  3369.         }
  3370.     }
  3371.       else                         /* Defined */
  3372.     {
  3373.       /* Potential symbol warning here */
  3374.       if (!g->warning) continue;
  3375.  
  3376.       /* Mark as being noted by relocation warning pass.  */
  3377.       SET_BIT (nlist_bitvector, s - start_of_syms);
  3378.       
  3379.       errfmt = 0;
  3380.       errmsg = g->warning;
  3381.       invalidate_line_number = 0;
  3382.     }
  3383.       
  3384.  
  3385.       /* If errfmt == 0, errmsg has already been defined.  */
  3386.       if (errfmt != 0)
  3387.     {
  3388.       char *nm;
  3389.  
  3390.       if (demangler == NULL || (nm = (*demangler)(g->name)) == NULL)
  3391.         nm = g->name;
  3392.       errmsg = (char *) xmalloc (strlen (errfmt) + strlen (nm) + 1);
  3393.       sprintf (errmsg, errfmt, nm, data_segment ? "data" : "text");
  3394.       if (nm != g->name)
  3395.         free (nm);
  3396.     }
  3397.  
  3398.       address_to_line (RELOC_ADDRESS (reloc) + start_of_segment,
  3399.                state_pointer);
  3400.  
  3401.       if (current->line >=0)
  3402.     fprintf (outfile, "%s:%d: %s\n", current->filename,
  3403.          invalidate_line_number ? 0 : current->line, errmsg);
  3404.       else
  3405.     fprintf (outfile, "%s: %s\n", current->filename, errmsg);
  3406.  
  3407.       if (errfmt != 0)
  3408.     free (errmsg);
  3409.     }
  3410.  
  3411.   free (state_pointer);
  3412. }
  3413.  
  3414. /* Print on OUTFILE a list of all warnings generated by references
  3415.    and/or definitions in the file ENTRY.  List source file and line
  3416.    number if possible, just the .o file if not. */
  3417.  
  3418. void
  3419. do_file_warnings (entry, outfile)
  3420.      struct file_entry *entry;
  3421.      FILE *outfile;
  3422. {
  3423.   int number_of_syms = entry->header.a_syms / sizeof (struct nlist);
  3424.   unsigned char *nlist_bitvector =
  3425.     (unsigned char *) alloca ((number_of_syms >> 3) + 1);
  3426.   struct line_debug_entry *text_scan, *data_scan;
  3427.   int i;
  3428.   char *errfmt, *file_name;
  3429.   int line_number;
  3430.   int dont_allow_symbol_name;
  3431.  
  3432.   bzero (nlist_bitvector, (number_of_syms >> 3) + 1);
  3433.  
  3434.   /* Read in the files strings if they aren't available */
  3435.   if (!entry->strings)
  3436.     {
  3437.       int desc;
  3438.  
  3439.       entry->strings = (char *) alloca (entry->string_size);
  3440.       desc = file_open (entry);
  3441.       read_entry_strings (desc, entry);
  3442.     }
  3443.  
  3444.   read_file_relocation (entry);
  3445.  
  3446.   /* Do text warnings based on a scan through the relocation info.  */
  3447.   do_relocation_warnings (entry, 0, outfile, nlist_bitvector);
  3448.  
  3449.   /* Do data warnings based on a scan through the relocation info.  */
  3450.   do_relocation_warnings (entry, 1, outfile, nlist_bitvector);
  3451.  
  3452.   /* Scan through all of the nlist entries in this file and pick up
  3453.      anything that the scan through the relocation stuff didn't.  */
  3454.  
  3455.   text_scan = init_debug_scan (0, entry);
  3456.   data_scan = init_debug_scan (1, entry);
  3457.  
  3458.   for (i = 0; i < number_of_syms; i++)
  3459.     {
  3460.       struct nlist *s;
  3461.       struct glosym *g;
  3462.  
  3463.       s = entry->symbols + i;
  3464.  
  3465.       if (!(s->n_type & N_EXT))
  3466.     continue;
  3467.  
  3468.       g = (symbol *) s->n_un.n_name;
  3469.       dont_allow_symbol_name = 0;
  3470.  
  3471.       if (list_multiple_defs && g->multiply_defined)
  3472.     {
  3473.       errfmt = "Definition of symbol %s (multiply defined)";
  3474.       switch (s->n_type)
  3475.         {
  3476.         case N_TEXT | N_EXT:
  3477.           line_number = address_to_line (s->n_value, text_scan);
  3478.           file_name = text_scan[0].filename;
  3479.           break;
  3480.         case N_DATA | N_EXT:
  3481.           line_number = address_to_line (s->n_value, data_scan);
  3482.           file_name = data_scan[0].filename;
  3483.           break;
  3484.         case N_SETA | N_EXT:
  3485.         case N_SETT | N_EXT:
  3486.         case N_SETD | N_EXT:
  3487.         case N_SETB | N_EXT:
  3488.           if (g->multiply_defined == 2)
  3489.         continue;
  3490.           errfmt = "First set element definition of symbol %s (multiply defined)";
  3491.           break;
  3492.         default:
  3493.           continue;        /* Don't print out multiple defs
  3494.                    at references.  */
  3495.         }
  3496.     }
  3497.       else if (BIT_SET_P (nlist_bitvector, i))
  3498.     continue;
  3499.       else if (list_unresolved_refs && !g->defined)
  3500.     {
  3501.       if (g->undef_refs >= MAX_UREFS_PRINTED)
  3502.         continue;
  3503.  
  3504.       if (++(g->undef_refs) == MAX_UREFS_PRINTED)
  3505.         errfmt = "More undefined \"%s\" refs follow";
  3506.       else
  3507.         errfmt = "Undefined symbol \"%s\" referenced";
  3508.       line_number = -1;
  3509.     }
  3510.       else if (g->warning)
  3511.     {
  3512.       /* There are two cases in which we don't want to
  3513.          do this.  The first is if this is a definition instead of
  3514.          a reference.  The second is if it's the reference used by
  3515.          the warning stabs itself.  */
  3516.       if (s->n_type != (N_EXT | N_UNDF)
  3517.           || (i && (s-1)->n_type == N_WARNING))
  3518.         continue;
  3519.  
  3520.       errfmt = g->warning;
  3521.       line_number = -1;
  3522.       dont_allow_symbol_name = 1;
  3523.     }
  3524.       else
  3525.     continue;
  3526.  
  3527.       if (line_number == -1)
  3528.     fprintf (outfile, "%s: ", entry->filename);
  3529.       else
  3530.     fprintf (outfile, "%s:%d: ", file_name, line_number);
  3531.  
  3532.       if (dont_allow_symbol_name)
  3533.       fprintf (outfile, "%s", errfmt);
  3534.       else
  3535.       {
  3536.     char *nm;
  3537.     if (demangler != NULL && (nm = (*demangler)(g->name)) != NULL)
  3538.       {
  3539.         fprintf (outfile, errfmt, nm);
  3540.         free (nm);
  3541.       } else
  3542.         fprintf (outfile, errfmt, g->name);
  3543.       }
  3544.  
  3545.       fputc ('\n', outfile);
  3546.     }
  3547.   free (text_scan);
  3548.   free (data_scan);
  3549.   entry->strings = 0;        /* Since it will dissapear anyway.  */
  3550. }
  3551.  
  3552. do_warnings (outfile)
  3553.      FILE *outfile;
  3554. {
  3555.   int i;
  3556.  
  3557.   list_unresolved_refs = !relocatable_output && undefined_global_sym_count;
  3558.   list_warning_symbols = warning_count;
  3559.   list_multiple_defs = multiple_def_count != 0;
  3560.  
  3561.   if (!(list_unresolved_refs ||
  3562.     list_warning_symbols ||
  3563.     list_multiple_defs      ))
  3564.     /* No need to run this routine */
  3565.     return;
  3566.  
  3567.   each_file (do_file_warnings, outfile);
  3568.   if (trace_files)
  3569.       printf("undefined_global_sym_count= %d, multiple_def_count= %d\n",
  3570.          undefined_global_sym_count, multiple_def_count);
  3571.   if (list_unresolved_refs || list_multiple_defs)
  3572.     make_executable = 0;
  3573. }
  3574.  
  3575. /* Write the output file */
  3576.  
  3577. void
  3578. write_output ()
  3579. {
  3580.   struct stat statbuf;
  3581.   int filemode;
  3582.  
  3583.   outdesc = open (output_filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
  3584.   if (outdesc < 0) perror_name (output_filename);
  3585.  
  3586.   if (fstat (outdesc, &statbuf) < 0)
  3587.     perror_name (output_filename);
  3588.  
  3589.   filemode = statbuf.st_mode;
  3590.  
  3591.   chmod (output_filename, filemode & ~0111);
  3592.  
  3593.   /* Output the a.out header.  */
  3594.   write_header ();
  3595.  
  3596.   /* Output the text and data segments, relocating as we go.  */
  3597.   write_text ();
  3598.   write_data ();
  3599.  
  3600.   /* Output the merged relocation info, if requested with `-r'.  */
  3601.   if (relocatable_output)
  3602.     write_rel ();
  3603.  
  3604.   /* Output the symbol table (both globals and locals).  */
  3605.   write_syms ();
  3606.  
  3607.   /* Copy any GDB symbol segments from input files.  */
  3608.   write_symsegs ();
  3609.  
  3610.   close (outdesc);
  3611.  
  3612.   if (chmod (output_filename, filemode | 0111) == -1)
  3613.     perror_name (output_filename);
  3614. }
  3615.  
  3616. void modify_location (), perform_relocation (), copy_text (), copy_data ();
  3617.  
  3618. void
  3619. write_header ()
  3620. {
  3621.   N_SET_MAGIC (outheader, magic);
  3622.   outheader.a_text = text_size;
  3623.   if (T_flag_specified)
  3624.       outheader.a_text += text_start;
  3625. #if TARGET_MACHINE==TARGET_SEQUENT
  3626.   outheader.a_text += N_ADDRADJ (outheader);
  3627.   if (entry_symbol == 0)
  3628.       entry_symbol = getsym("start");
  3629. #endif
  3630.   outheader.a_data = data_size;
  3631.   outheader.a_bss = bss_size;
  3632.   outheader.a_entry = (entry_symbol ? entry_symbol->value
  3633.                : text_start + entry_offset);
  3634. #ifdef COFF_ENCAPSULATE
  3635.   if (need_coff_header)
  3636.     {
  3637.       /* We are encapsulating BSD format within COFF format.  */
  3638.       struct coffscn *tp, *dp, *bp;
  3639.  
  3640.       tp = &coffheader.scns[0];
  3641.       dp = &coffheader.scns[1];
  3642.       bp = &coffheader.scns[2];
  3643.  
  3644.       strcpy (tp->s_name, ".text");
  3645.       tp->s_paddr = text_start;
  3646.       tp->s_vaddr = text_start;
  3647.       tp->s_size = text_size;
  3648.       tp->s_scnptr = sizeof (struct coffheader) + sizeof (struct exec);
  3649.       tp->s_relptr = 0;
  3650.       tp->s_lnnoptr = 0;
  3651.       tp->s_nreloc = 0;
  3652.       tp->s_nlnno = 0;
  3653.       tp->s_flags = 0x20;
  3654.       strcpy (dp->s_name, ".data");
  3655.       dp->s_paddr = data_start;
  3656.       dp->s_vaddr = data_start;
  3657.       dp->s_size = data_size;
  3658.       dp->s_scnptr = tp->s_scnptr + tp->s_size;
  3659.       dp->s_relptr = 0;
  3660.       dp->s_lnnoptr = 0;
  3661.       dp->s_nreloc = 0;
  3662.       dp->s_nlnno = 0;
  3663.       dp->s_flags = 0x40;
  3664.       strcpy (bp->s_name, ".bss");
  3665.       bp->s_paddr = dp->s_vaddr + dp->s_size;
  3666.       bp->s_vaddr = bp->s_paddr;
  3667.       bp->s_size = bss_size;
  3668.       bp->s_scnptr = 0;
  3669.       bp->s_relptr = 0;
  3670.       bp->s_lnnoptr = 0;
  3671.       bp->s_nreloc = 0;
  3672.       bp->s_nlnno = 0;
  3673.       bp->s_flags = 0x80;
  3674.  
  3675.       coffheader.f_magic = COFF_MAGIC;
  3676.       coffheader.f_nscns = 3;
  3677.       /* store an unlikely time so programs can
  3678.        * tell that there is a bsd header
  3679.        */
  3680.       coffheader.f_timdat = 1;
  3681.       coffheader.f_symptr = 0;
  3682.       coffheader.f_nsyms = 0;
  3683.       coffheader.f_opthdr = 28;
  3684.       coffheader.f_flags = 0x103;
  3685.       /* aouthdr */
  3686.       coffheader.magic = ZMAGIC;
  3687.       coffheader.vstamp = 0;
  3688.       coffheader.tsize = tp->s_size;
  3689.       coffheader.dsize = dp->s_size;
  3690.       coffheader.bsize = bp->s_size;
  3691.       coffheader.entry = outheader.a_entry;
  3692.       coffheader.text_start = tp->s_vaddr;
  3693.       coffheader.data_start = dp->s_vaddr;
  3694.     }
  3695. #endif
  3696. #if TARGET==TARGET_SEQUENT
  3697.     if (SMAGIC == magic) {
  3698.     char *target_ptr; 
  3699.     long n; 
  3700.  
  3701.     outheader.a_gdtbl = gdt_filler; 
  3702.     if (sizeof(instr) > sizeof(outheader.a_bootstrap)) {
  3703.         fatal("a_bootstrap too small for code"); 
  3704.     } 
  3705.     n = outheader.a_entry; 
  3706.     target_ptr = &instr[sizeof(instr) - 4];
  3707.     target_ptr[0] = n & 0xff; 
  3708.     target_ptr[1] = (n >> 8) & 0xff; 
  3709.     target_ptr[2] = (n >> 16) & 0xff; 
  3710.     target_ptr[3] = (n >> 24) & 0xff; 
  3711.     bcopy(instr, (char *)outheader.a_bootstrap, sizeof(instr)); 
  3712.     }
  3713. #endif
  3714.  
  3715. #ifdef INITIALIZE_HEADER
  3716.   INITIALIZE_HEADER;
  3717. #endif
  3718.  
  3719.   if (strip_symbols == STRIP_ALL)
  3720.     nsyms = 0;
  3721.   else
  3722.     {
  3723.       nsyms = (defined_global_sym_count
  3724.            + undefined_global_sym_count);
  3725.       if (discard_locals == DISCARD_L)
  3726.     nsyms += non_L_local_sym_count;
  3727.       else if (discard_locals == DISCARD_NONE)
  3728.     nsyms += local_sym_count;
  3729.       /* One extra for following reference on indirects */
  3730.       if (relocatable_output)
  3731.     nsyms += set_symbol_count + global_indirect_count;
  3732.     }
  3733.  
  3734.   if (strip_symbols == STRIP_NONE)
  3735.     nsyms += debugger_sym_count;
  3736.  
  3737.   outheader.a_syms = nsyms * sizeof (struct nlist);
  3738.  
  3739.   if (relocatable_output)
  3740.     {
  3741.       outheader.a_trsize = text_reloc_size;
  3742.       outheader.a_drsize = data_reloc_size;
  3743.     }
  3744.   else
  3745.     {
  3746.       outheader.a_trsize = 0;
  3747.       outheader.a_drsize = 0;
  3748.     }
  3749.  
  3750. #ifdef COFF_ENCAPSULATE
  3751.   if (need_coff_header)
  3752.     mywrite (&coffheader, sizeof coffheader, 1, outdesc);
  3753. #endif
  3754. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3755.   fix_exec_header_byte_order(&outheader);
  3756. #endif
  3757.   mywrite (&outheader, sizeof (struct exec), 1, outdesc);
  3758. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3759.   fix_exec_header_byte_order(&outheader);
  3760. #endif
  3761.  
  3762.   /* Output whatever padding is required in the executable file
  3763.      between the header and the start of the text.  */
  3764.  
  3765. #ifndef COFF_ENCAPSULATE
  3766.   padfile (N_TXTOFF (outheader) - sizeof outheader, outdesc);
  3767. #endif
  3768.  
  3769.  
  3770.   if (T_flag_specified)
  3771.       padfile (text_start - sizeof(struct exec), outdesc);
  3772.  
  3773. }
  3774.  
  3775. /* Relocate the text segment of each input file
  3776.    and write to the output file.  */
  3777.  
  3778. void
  3779. write_text ()
  3780. {
  3781.   if (trace_files)
  3782.     fprintf (stderr, "Copying and relocating text:\n\n");
  3783.  
  3784.   each_full_file (copy_text);
  3785.   file_close ();
  3786.  
  3787.   if (trace_files)
  3788.     fprintf (stderr, "\n");
  3789.  
  3790.   padfile (text_pad, outdesc);
  3791. }
  3792.  
  3793. int
  3794. text_offset (entry)
  3795.      struct file_entry *entry;
  3796. {
  3797.   return entry->starting_offset + N_TXTOFF (entry->header);
  3798. }
  3799.  
  3800. /* Read in all of the relocation information */
  3801.  
  3802. void
  3803. read_relocation ()
  3804. {
  3805.   each_full_file (read_file_relocation);
  3806. }
  3807.  
  3808. /* Read in the relocation sections of ENTRY if necessary */
  3809.  
  3810. void
  3811. read_file_relocation (entry)
  3812.      struct file_entry *entry;
  3813. {
  3814.   register struct relocation_info *reloc;
  3815.   int desc;
  3816.   int read_return;
  3817.  
  3818.   desc = -1;
  3819.   if (!entry->textrel)
  3820.     {
  3821.       reloc = (struct relocation_info *) xmalloc (entry->header.a_trsize);
  3822.       desc = file_open (entry);
  3823.       lseek (desc,
  3824.          text_offset (entry) + entry->header.a_text + entry->header.a_data,
  3825.          L_SET);
  3826.       if (entry->header.a_trsize != (read_return = read (desc, reloc, entry->header.a_trsize)))
  3827.     {
  3828.       fprintf (stderr, "Return from read: %d\n", read_return);
  3829.       fatal_with_file ("premature eof in text relocation of ", entry);
  3830.     }
  3831. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3832.       target_to_host_reloc_byte_order(reloc,
  3833.     entry->header.a_trsize/sizeof(*reloc));
  3834. #endif
  3835.       entry->textrel = reloc;
  3836.     }
  3837.  
  3838.   if (!entry->datarel)
  3839.     {
  3840.       reloc = (struct relocation_info *) xmalloc (entry->header.a_drsize);
  3841.       if (desc == -1) desc = file_open (entry);
  3842.       lseek (desc,
  3843.          text_offset (entry) + entry->header.a_text
  3844.          + entry->header.a_data + entry->header.a_trsize,
  3845.          L_SET);
  3846.       if (entry->header.a_drsize != read (desc, reloc, entry->header.a_drsize))
  3847.     fatal_with_file ("premature eof in data relocation of ", entry);
  3848. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3849.       target_to_host_reloc_byte_order(reloc,
  3850.     entry->header.a_drsize/sizeof(*reloc));
  3851. #endif
  3852.       entry->datarel = reloc;
  3853.     }
  3854. }
  3855.  
  3856. /* Read the text segment contents of ENTRY, relocate them,
  3857.    and write the result to the output file.
  3858.    If `-r', save the text relocation for later reuse.  */
  3859.  
  3860. void
  3861. copy_text (entry)
  3862.      struct file_entry *entry;
  3863. {
  3864.   register char *bytes;
  3865.   register int desc;
  3866.   register struct relocation_info *reloc;
  3867.  
  3868.   if (trace_files)
  3869.     prline_file_name (entry, stderr);
  3870.  
  3871.   desc = file_open (entry);
  3872.  
  3873.   /* Allocate space for the file's text section */
  3874.  
  3875.   bytes = (char *) alloca (entry->header.a_text);
  3876.  
  3877.   /* Deal with relocation information however is appropriate */
  3878.  
  3879.   if (entry->textrel)  reloc = entry->textrel;
  3880.   else if (relocatable_output)
  3881.     {
  3882.       read_file_relocation (entry);
  3883.       reloc = entry->textrel;
  3884.     }
  3885.   else
  3886.     {
  3887.       reloc = (struct relocation_info *) alloca (entry->header.a_trsize);
  3888.       if (trace_files)
  3889.           printf("lseek to 0x%x (t_o= 0x%x, a_t= 0x%x, a_d= 0x%x)\n",
  3890.              text_offset(entry) + entry->header.a_text +
  3891.              entry->header.a_data, text_offset(entry),
  3892.              entry->header.a_text, entry->header.a_data);
  3893.       lseek (desc, text_offset (entry) + entry->header.a_text + entry->header.a_data, 0);
  3894.       if (entry->header.a_trsize != read (desc, reloc, entry->header.a_trsize))
  3895.     fatal_with_file ("premature eof in text relocation of ", entry);
  3896. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3897.       target_to_host_reloc_byte_order(reloc,
  3898.       entry->header.a_trsize/sizeof(*reloc));
  3899. #endif
  3900.     }
  3901.  
  3902.   /* Read the text section into core.  */
  3903.  
  3904.   lseek (desc, text_offset (entry), 0);
  3905.   if (entry->header.a_text != read (desc, bytes, entry->header.a_text))
  3906.     fatal_with_file ("premature eof in text section of ", entry);
  3907.  
  3908.  
  3909.   /* Relocate the text according to the text relocation.  */
  3910.  
  3911.   perform_relocation (bytes, entry->text_start_address, entry->header.a_text,
  3912.               reloc, entry->header.a_trsize, entry);
  3913.  
  3914.   /* Write the relocated text to the output file.  */
  3915.  
  3916.   mywrite (bytes, 1, entry->header.a_text, outdesc);
  3917. }
  3918.  
  3919. /* Relocate the data segment of each input file
  3920.    and write to the output file.  */
  3921.  
  3922. void
  3923. write_data ()
  3924. {
  3925.   if (trace_files)
  3926.     fprintf (stderr, "Copying and relocating data:\n\n");
  3927.  
  3928.   each_full_file (copy_data);
  3929.   file_close ();
  3930.  
  3931.   /* Write out the set element vectors.  See digest symbols for
  3932.      description of length of the set vector section.  */
  3933.  
  3934. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3935.   {
  3936.     int i;
  3937.     for (i = 0; i < 2 * set_symbol_count + set_vector_count; ++i) {
  3938.     fix_byte_order(&set_vectors[i], sizeof(*set_vectors));
  3939.     }
  3940.   }
  3941. #endif
  3942.  
  3943.   if (set_vector_count)
  3944.     mywrite (set_vectors, 2 * set_symbol_count + set_vector_count,
  3945.          sizeof (unsigned long), outdesc);
  3946.  
  3947.   if (trace_files)
  3948.     fprintf (stderr, "\n");
  3949.  
  3950.   padfile (data_pad, outdesc);
  3951. }
  3952.  
  3953. /* Read the data segment contents of ENTRY, relocate them,
  3954.    and write the result to the output file.
  3955.    If `-r', save the data relocation for later reuse.
  3956.    See comments in `copy_text'.  */
  3957.  
  3958. void
  3959. copy_data (entry)
  3960.      struct file_entry *entry;
  3961. {
  3962.   register struct relocation_info *reloc;
  3963.   register char *bytes;
  3964.   register int desc;
  3965.  
  3966.   if (trace_files)
  3967.     prline_file_name (entry, stderr);
  3968.  
  3969.   desc = file_open (entry);
  3970.  
  3971.   bytes = (char *) alloca (entry->header.a_data);
  3972.  
  3973.   if (entry->datarel) reloc = entry->datarel;
  3974.   else if (relocatable_output)    /* Will need this again */
  3975.     {
  3976.       read_file_relocation (entry);
  3977.       reloc = entry->datarel;
  3978.     }
  3979.   else
  3980.     {
  3981.       reloc = (struct relocation_info *) alloca (entry->header.a_drsize);
  3982.       lseek (desc, text_offset (entry) + entry->header.a_text
  3983.          + entry->header.a_data + entry->header.a_trsize,
  3984.          0);
  3985.       if (entry->header.a_drsize != read (desc, reloc, entry->header.a_drsize))
  3986.     fatal_with_file ("premature eof in data relocation of ", entry);
  3987. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  3988.       target_to_host_reloc_byte_order(reloc,
  3989.       entry->header.a_drsize/sizeof(*reloc));
  3990. #endif
  3991.     }
  3992.  
  3993.   lseek (desc, text_offset (entry) + entry->header.a_text, 0);
  3994.   if (entry->header.a_data != read (desc, bytes, entry->header.a_data))
  3995.     fatal_with_file ("premature eof in data section of ", entry);
  3996.  
  3997.   perform_relocation (bytes, entry->data_start_address - entry->header.a_text,
  3998.               entry->header.a_data, reloc, entry->header.a_drsize, entry);
  3999.  
  4000.   mywrite (bytes, 1, entry->header.a_data, outdesc);
  4001. }
  4002.  
  4003. /* Relocate ENTRY's text or data section contents.
  4004.    DATA is the address of the contents, in core.
  4005.    DATA_SIZE is the length of the contents.
  4006.    PC_RELOCATION is the difference between the address of the contents
  4007.      in the output file and its address in the input file.
  4008.    RELOC_INFO is the address of the relocation info, in core.
  4009.    RELOC_SIZE is its length in bytes.  */
  4010. /* This version is about to be severley hacked by Randy.  Hope it
  4011.    works afterwards. */
  4012. void
  4013. perform_relocation (data, pc_relocation, data_size, reloc_info, reloc_size, entry)
  4014.      char *data;
  4015.      struct relocation_info *reloc_info;
  4016.      struct file_entry *entry;
  4017.      int pc_relocation;
  4018.      int data_size;
  4019.      int reloc_size;
  4020. {
  4021.   register struct relocation_info *p = reloc_info;
  4022.   struct relocation_info *end
  4023.     = reloc_info + reloc_size / sizeof (struct relocation_info);
  4024.   int text_relocation = entry->text_start_address;
  4025.   int data_relocation = entry->data_start_address - entry->header.a_text;
  4026.   int bss_relocation
  4027.     = entry->bss_start_address - entry->header.a_text - entry->header.a_data;
  4028.  
  4029.   for (; p < end; p++)
  4030.     {
  4031.       register int relocation = 0;
  4032.       register int addr = RELOC_ADDRESS(p);
  4033.       register unsigned int mask = 0;
  4034.       register unsigned int x;
  4035.  
  4036.       if (addr >= data_size)
  4037.     fatal_with_file ("relocation address out of range in ", entry);
  4038.  
  4039.       if (RELOC_EXTERN_P(p))
  4040.     {
  4041.       int symindex = RELOC_SYMBOL (p) * sizeof (struct nlist);
  4042.       symbol *sp = ((symbol *)
  4043.             (((struct nlist *)
  4044.               (((char *)entry->symbols) + symindex))
  4045.              ->n_un.n_name));
  4046.  
  4047. #ifdef N_INDR
  4048.       /* Resolve indirection */
  4049.       if ((sp->defined & ~N_EXT) == N_INDR)
  4050.         sp = (symbol *) sp->value;
  4051. #endif
  4052.  
  4053.       if (symindex >= entry->header.a_syms)
  4054.         fatal_with_file ("relocation symbolnum out of range in ", entry);
  4055.  
  4056.       /* If the symbol is undefined, leave it at zero.  */
  4057.       if (! sp->defined)
  4058.         relocation = 0;
  4059.       else
  4060.         relocation = sp->value;
  4061.     }
  4062.       else switch (RELOC_TYPE(p))
  4063.     {
  4064.     case N_TEXT:
  4065.     case N_TEXT | N_EXT:
  4066.       relocation = text_relocation;
  4067.       break;
  4068.  
  4069.     case N_DATA:
  4070.     case N_DATA | N_EXT:
  4071.       /* A word that points to beginning of the the data section
  4072.          initially contains not 0 but rather the "address" of that section
  4073.          in the input file, which is the length of the file's text.  */
  4074.       relocation = data_relocation;
  4075.       break;
  4076.  
  4077.     case N_BSS:
  4078.     case N_BSS | N_EXT:
  4079.       /* Similarly, an input word pointing to the beginning of the bss
  4080.          initially contains the length of text plus data of the file.  */
  4081.       relocation = bss_relocation;
  4082.       break;
  4083.  
  4084.     case N_ABS:
  4085.     case N_ABS | N_EXT:
  4086.       /* Don't know why this code would occur, but apparently it does.  */
  4087.       break;
  4088.  
  4089.     default:
  4090.       fatal_with_file ("nonexternal relocation code invalid in ", entry);
  4091.     }
  4092. #if 0
  4093.       if (RELOC_PCREL_P(p))
  4094.     relocation -= pc_relocation;
  4095. #endif
  4096.  
  4097. #ifdef RELOC_ADD_EXTRA
  4098.       relocation += RELOC_ADD_EXTRA(p);
  4099.       if (relocatable_output)
  4100.     {
  4101.       /* If this RELOC_ADD_EXTRA is 0, it means that the
  4102.          symbol was external and the relocation does not
  4103.          need a fixup here.  */
  4104.       if (RELOC_ADD_EXTRA (p))
  4105.         {
  4106.           if (! RELOC_PCREL_P (p))
  4107.         RELOC_ADD_EXTRA (p) = relocation;
  4108.           else
  4109.         RELOC_ADD_EXTRA (p) -= pc_relocation;
  4110.         }
  4111. #if 1
  4112.       if (! RELOC_PCREL_P (p))
  4113.         {
  4114.           if ((int)p->r_type <= (int) RELOC_32
  4115.           || RELOC_EXTERN_P (p) == 0)
  4116.         RELOC_ADD_EXTRA (p) = relocation;
  4117.         }
  4118.       else if (RELOC_EXTERN_P (p))
  4119.         RELOC_ADD_EXTRA (p) -= pc_relocation;
  4120. #endif
  4121.       continue;
  4122.     }
  4123. #endif
  4124. #if 1    
  4125.        if (RELOC_PCREL_P(p))
  4126.        relocation -= pc_relocation;
  4127. #endif
  4128.  
  4129.       relocation >>= RELOC_VALUE_RIGHTSHIFT(p);
  4130.  
  4131.       /* Unshifted mask for relocation */
  4132.       mask = 1 << RELOC_TARGET_BITSIZE(p) - 1;
  4133.       mask |= mask - 1;
  4134.       relocation &= mask;
  4135.  
  4136.       /* Shift everything up to where it's going to be used */
  4137.       relocation <<= RELOC_TARGET_BITPOS(p);
  4138.       mask <<= RELOC_TARGET_BITPOS(p);
  4139.  
  4140.       switch (RELOC_TARGET_SIZE(p))
  4141.     {
  4142.     case 0:
  4143.       if (RELOC_MEMORY_SUB_P(p))
  4144.         relocation -= mask & *(char *) (data + addr);
  4145.       else if (RELOC_MEMORY_ADD_P(p))
  4146.         relocation += mask & *(char *) (data + addr);
  4147.       *(char *) (data + addr) &= ~mask;
  4148.       *(char *) (data + addr) |= relocation;
  4149.       break;
  4150.  
  4151.     case 1:
  4152. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  4153.       x = ((unsigned char *) (data + addr))[1]
  4154.        | (((unsigned char *) (data + addr))[0] << 8);
  4155. #endif
  4156. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  4157.       x = ((unsigned char *) (data + addr))[0]
  4158.        | (((unsigned char *) (data + addr))[1] << 8);
  4159. #endif
  4160.       if (RELOC_MEMORY_SUB_P(p))
  4161.         relocation -= mask & x;
  4162.       else if (RELOC_MEMORY_ADD_P(p))
  4163.         relocation += mask & x;
  4164.       x &= ~mask;
  4165.       x |= relocation;
  4166. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  4167.       ((unsigned char *) (data + addr))[1] = x;
  4168.       ((unsigned char *) (data + addr))[0] = x >> 8;
  4169. #endif
  4170. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  4171.       ((unsigned char *) (data + addr))[0] = x;
  4172.       ((unsigned char *) (data + addr))[1] = x >> 8;
  4173. #endif
  4174.       break;
  4175.  
  4176.     case 2:
  4177. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  4178.       x = ((unsigned char *) (data + addr))[3]
  4179.        | (((unsigned char *) (data + addr))[2] << 8)
  4180.        | (((unsigned char *) (data + addr))[1] << 16)
  4181.        | (((unsigned char *) (data + addr))[0] << 24);
  4182. #endif
  4183. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  4184.       x = ((unsigned char *) (data + addr))[0]
  4185.        | (((unsigned char *) (data + addr))[1] << 8)
  4186.        | (((unsigned char *) (data + addr))[2] << 16)
  4187.        | (((unsigned char *) (data + addr))[3] << 24);
  4188. #endif
  4189.           if (RELOC_MEMORY_SUB_P(p))
  4190.         relocation -= mask & x;
  4191.       else if (RELOC_MEMORY_ADD_P(p))
  4192.         relocation += mask & x;
  4193.       x &= ~mask;
  4194.       x |= relocation;
  4195. #if TARGET_BYTE_ORDER==BIG_ENDIAN
  4196.       ((unsigned char *) (data + addr))[3] = x;
  4197.       ((unsigned char *) (data + addr))[2] = x >> 8;
  4198.       ((unsigned char *) (data + addr))[1] = x >> 16;
  4199.       ((unsigned char *) (data + addr))[0] = x >> 24;
  4200. #endif
  4201. #if TARGET_BYTE_ORDER==LITTLE_ENDIAN
  4202.       ((unsigned char *) (data + addr))[0] = x;
  4203.       ((unsigned char *) (data + addr))[1] = x >> 8;
  4204.       ((unsigned char *) (data + addr))[2] = x >> 16;
  4205.       ((unsigned char *) (data + addr))[3] = x >> 24;
  4206. #endif
  4207.       break;
  4208.  
  4209.     default:
  4210.       fatal_with_file ("Unimplemented relocation field length in ", entry);
  4211.     }
  4212.     }
  4213. }
  4214.  
  4215. /* For relocatable_output only: write out the relocation,
  4216.    relocating the addresses-to-be-relocated.  */
  4217.  
  4218. void coptxtrel (), copdatrel ();
  4219.  
  4220. void
  4221. write_rel ()
  4222. {
  4223.   register int i;
  4224.   register int count = 0;
  4225.  
  4226.   if (trace_files)
  4227.     fprintf (stderr, "Writing text relocation:\n\n");
  4228.  
  4229.   /* Assign each global symbol a sequence number, giving the order
  4230.      in which `write_syms' will write it.
  4231.      This is so we can store the proper symbolnum fields
  4232.      in relocation entries we write.  */
  4233.  
  4234.   for (i = 0; i < TABSIZE; i++)
  4235.     {
  4236.       symbol *sp;
  4237.       for (sp = symtab[i]; sp; sp = sp->link)
  4238.     if (sp->referenced || sp->defined)
  4239.       {
  4240.         sp->def_count = count++;
  4241.         /* Leave room for the reference required by N_INDR, if
  4242.            necessary.  */
  4243.         if ((sp->defined & ~N_EXT) == N_INDR)
  4244.           count++;
  4245.       }
  4246.     }
  4247.   /* Correct, because if (reloatable_output), we will also be writing
  4248.      whatever indirect blocks we have.  */
  4249.   if (count != defined_global_sym_count
  4250.       + undefined_global_sym_count + global_indirect_count)
  4251.     fatal ("internal error");
  4252.  
  4253.   /* Write out the relocations of all files, remembered from copy_text.  */
  4254.  
  4255.   each_full_file (coptxtrel);
  4256.  
  4257.   if (trace_files)
  4258.     fprintf (stderr, "\nWriting data relocation:\n\n");
  4259.  
  4260.   each_full_file (copdatrel);
  4261.  
  4262.   if (trace_files)
  4263.     fprintf (stderr, "\n");
  4264. }
  4265.  
  4266. void
  4267. coptxtrel (entry)
  4268.      struct file_entry *entry;
  4269. {
  4270.   register struct relocation_info *p, *end;
  4271.   register int reloc = entry->text_start_address;
  4272.  
  4273.   p = entry->textrel;
  4274.   end = (struct relocation_info *) (entry->header.a_trsize + (char *) p);
  4275.   while (p < end)
  4276.     {
  4277.       RELOC_ADDRESS(p) += reloc;
  4278.       if (RELOC_EXTERN_P(p))
  4279.     {
  4280.       register int symindex = RELOC_SYMBOL(p) * sizeof (struct nlist);
  4281.       symbol *symptr = ((symbol *)
  4282.                 (((struct nlist *)
  4283.                   (((char *)entry->symbols) + symindex))
  4284.                  ->n_un.n_name));
  4285.  
  4286.       if (symindex >= entry->header.a_syms)
  4287.         fatal_with_file ("relocation symbolnum out of range in ", entry);
  4288.  
  4289. #ifdef N_INDR
  4290.       /* Resolve indirection.  */
  4291.       if ((symptr->defined & ~N_EXT) == N_INDR)
  4292.         symptr = (symbol *) symptr->value;
  4293. #endif
  4294.  
  4295.       /* If the symbol is now defined, change the external relocation
  4296.          to an internal one.  */
  4297.  
  4298.       if (symptr->defined)
  4299.         {
  4300.           RELOC_EXTERN_P(p) = 0;
  4301.           RELOC_SYMBOL(p) = (symptr->defined & N_TYPE);
  4302. #ifdef RELOC_ADD_EXTRA
  4303.           /* If we aren't going to be adding in the value in
  4304.              memory on the next pass of the loader, then we need
  4305.          to add it in from the relocation entry.  Otherwise
  4306.              the work we did in this pass is lost.  */
  4307.           if (!RELOC_MEMORY_ADD_P(p))
  4308.         RELOC_ADD_EXTRA (p) += symptr->value;
  4309. #endif
  4310.         }
  4311.       else
  4312.         /* Debugger symbols come first, so have to start this
  4313.            after them.  */
  4314.           RELOC_SYMBOL(p) = (symptr->def_count + nsyms
  4315.                  - defined_global_sym_count
  4316.                  - undefined_global_sym_count
  4317.                  - global_indirect_count);
  4318.     }
  4319.       p++;
  4320.     }
  4321. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4322.     host_to_target_reloc_byte_order((struct relocation_info *) entry->textrel,
  4323.     entry->header.a_trsize/sizeof(struct relocation_info));
  4324. #endif
  4325.   mywrite (entry->textrel, 1, entry->header.a_trsize, outdesc);
  4326. }
  4327.  
  4328. void
  4329. copdatrel (entry)
  4330.      struct file_entry *entry;
  4331. {
  4332.   register struct relocation_info *p, *end;
  4333.   /* Relocate the address of the relocation.
  4334.      Old address is relative to start of the input file's data section.
  4335.      New address is relative to start of the output file's data section.  */
  4336.   register int reloc = entry->data_start_address - text_size;
  4337.  
  4338.   p = entry->datarel;
  4339.   end = (struct relocation_info *) (entry->header.a_drsize + (char *) p);
  4340.   while (p < end)
  4341.     {
  4342.       RELOC_ADDRESS(p) += reloc;
  4343.       if (RELOC_EXTERN_P(p))
  4344.     {
  4345.       register int symindex = RELOC_SYMBOL(p) * sizeof (struct nlist);
  4346.       symbol *symptr = ((symbol *)
  4347.                 (((struct nlist *)
  4348.                   (((char *)entry->symbols) + symindex))
  4349.                  ->n_un.n_name));
  4350.       int symtype;
  4351.  
  4352.       if (symindex >= entry->header.a_syms)
  4353.         fatal_with_file ("relocation symbolnum out of range in ", entry);
  4354.  
  4355. #ifdef N_INDR
  4356.       /* Resolve indirection.  */
  4357.       if ((symptr->defined & ~N_EXT) == N_INDR)
  4358.         symptr = (symbol *) symptr->value;
  4359. #endif
  4360.  
  4361.        symtype = symptr->defined & N_TYPE;
  4362.  
  4363.       if (force_common_definition
  4364.           || symtype == N_DATA || symtype == N_TEXT || symtype == N_ABS)
  4365.         {
  4366.           RELOC_EXTERN_P(p) = 0;
  4367.           RELOC_SYMBOL(p) = symtype;
  4368.         }
  4369.       else
  4370.         /* Debugger symbols come first, so have to start this
  4371.            after them.  */
  4372.         RELOC_SYMBOL(p)
  4373.           = (((symbol *)
  4374.           (((struct nlist *)
  4375.             (((char *)entry->symbols) + symindex))
  4376.            ->n_un.n_name))
  4377.          ->def_count
  4378.          + nsyms - defined_global_sym_count
  4379.          - undefined_global_sym_count
  4380.          - global_indirect_count);
  4381.     }
  4382.       p++;
  4383.     }
  4384. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4385.     host_to_target_reloc_byte_order((struct relocation_info *) entry->datarel,
  4386.     entry->header.a_drsize/sizeof(struct relocation_info));
  4387. #endif
  4388.   mywrite (entry->datarel, 1, entry->header.a_drsize, outdesc);
  4389. }
  4390.  
  4391. void write_file_syms ();
  4392. void write_string_table ();
  4393.  
  4394. /* Offsets and current lengths of symbol and string tables in output file. */
  4395.  
  4396. int symbol_table_offset;
  4397. int symbol_table_len;
  4398.  
  4399. /* Address in output file where string table starts.  */
  4400. int string_table_offset;
  4401.  
  4402. /* Offset within string table
  4403.    where the strings in `strtab_vector' should be written.  */
  4404. int string_table_len;
  4405.  
  4406. /* Total size of string table strings allocated so far,
  4407.    including strings in `strtab_vector'.  */
  4408. int strtab_size;
  4409.  
  4410. /* Vector whose elements are strings to be added to the string table.  */
  4411. char **strtab_vector;
  4412.  
  4413. /* Vector whose elements are the lengths of those strings.  */
  4414. int *strtab_lens;
  4415.  
  4416. /* Index in `strtab_vector' at which the next string will be stored.  */
  4417. int strtab_index;
  4418.  
  4419. /* Add the string NAME to the output file string table.
  4420.    Record it in `strtab_vector' to be output later.
  4421.    Return the index within the string table that this string will have.  */
  4422.  
  4423. int
  4424. assign_string_table_index (name)
  4425.      char *name;
  4426. {
  4427.   register int index = strtab_size;
  4428.   register int len = strlen (name) + 1;
  4429.  
  4430.   strtab_size += len;
  4431.   strtab_vector[strtab_index] = name;
  4432.   strtab_lens[strtab_index++] = len;
  4433.  
  4434.   return index;
  4435. }
  4436.  
  4437. FILE *outstream = (FILE *) 0;
  4438.  
  4439. /* Write the contents of `strtab_vector' into the string table.
  4440.    This is done once for each file's local&debugger symbols
  4441.    and once for the global symbols.  */
  4442.  
  4443. void
  4444. write_string_table ()
  4445. {
  4446.   register int i;
  4447.  
  4448.   lseek (outdesc, string_table_offset + string_table_len, 0);
  4449.  
  4450.   if (!outstream)
  4451.     outstream = fdopen (outdesc, "w");
  4452.  
  4453.   for (i = 0; i < strtab_index; i++)
  4454.     {
  4455.       fwrite (strtab_vector[i], 1, strtab_lens[i], outstream);
  4456.       string_table_len += strtab_lens[i];
  4457.     }
  4458.  
  4459.   fflush (outstream);
  4460.  
  4461.   /* Report I/O error such as disk full.  */
  4462.   if (ferror (outstream))
  4463.     perror_name (output_filename);
  4464. }
  4465.  
  4466. /* Write the symbol table and string table of the output file.  */
  4467.  
  4468. void
  4469. write_syms ()
  4470. {
  4471.   /* Number of symbols written so far.  */
  4472.   int syms_written = 0;
  4473.   register int i;
  4474.   register symbol *sp;
  4475.  
  4476.   /* Buffer big enough for all the global symbols.  One
  4477.      extra struct for each indirect symbol to hold the extra reference
  4478.      following. */
  4479.   struct nlist *buf
  4480.     = (struct nlist *) alloca ((defined_global_sym_count
  4481.                 + undefined_global_sym_count
  4482.                 + global_indirect_count)
  4483.                    * sizeof (struct nlist));
  4484.   /* Pointer for storing into BUF.  */
  4485.   register struct nlist *bufp = buf;
  4486.  
  4487.   /* Size of string table includes the bytes that store the size.  */
  4488.   strtab_size = sizeof strtab_size;
  4489.  
  4490.   symbol_table_offset = N_SYMOFF (outheader);
  4491.   symbol_table_len = 0;
  4492.   string_table_offset = N_STROFF (outheader);
  4493.   string_table_len = strtab_size;
  4494.  
  4495.   if (strip_symbols == STRIP_ALL)
  4496.     return;
  4497.  
  4498.   /* Write the local symbols defined by the various files.  */
  4499.  
  4500.   each_file (write_file_syms, &syms_written);
  4501.   file_close ();
  4502.  
  4503.   /* Now write out the global symbols.  */
  4504.  
  4505.   /* Allocate two vectors that record the data to generate the string
  4506.      table from the global symbols written so far.  This must include
  4507.      extra space for the references following indirect outputs. */
  4508.  
  4509.   strtab_vector = (char **) alloca ((num_hash_tab_syms
  4510.                      + global_indirect_count) * sizeof (char *));
  4511.   strtab_lens = (int *) alloca ((num_hash_tab_syms
  4512.                  + global_indirect_count) * sizeof (int));
  4513.   strtab_index = 0;
  4514.  
  4515.   /* Scan the symbol hash table, bucket by bucket.  */
  4516.  
  4517.   for (i = 0; i < TABSIZE; i++)
  4518.     for (sp = symtab[i]; sp; sp = sp->link)
  4519.       {
  4520.     struct nlist nl;
  4521.  
  4522.     nl.n_other = 0;
  4523.     nl.n_desc = 0;
  4524.  
  4525.     /* Compute a `struct nlist' for the symbol.  */
  4526.  
  4527.     if (sp->defined || sp->referenced)
  4528.       {
  4529.         /* common condition needs to be before undefined condition */
  4530.         /* because unallocated commons are set undefined in */
  4531.         /* digest_symbols */
  4532.         if (sp->defined > 1) /* defined with known type */
  4533.           {
  4534.         /* If the target of an indirect symbol has been
  4535.            defined and we are outputting an executable,
  4536.            resolve the indirection; it's no longer needed */
  4537.         if (!relocatable_output
  4538.             && ((sp->defined & N_TYPE) == N_INDR)
  4539.             && (((symbol *) sp->value)->defined > 1))
  4540.           {
  4541.             symbol *newsp = (symbol *) sp->value;
  4542.             nl.n_type = newsp->defined;
  4543.             nl.n_value = newsp->value;
  4544.           }
  4545.         else
  4546.           {
  4547.             nl.n_type = sp->defined;
  4548.             if (sp->defined != (N_INDR | N_EXT))
  4549.               nl.n_value = sp->value;
  4550.             else
  4551.               nl.n_value = 0;
  4552.           }
  4553.           }
  4554.         else if (sp->max_common_size) /* defined as common but not allocated. */
  4555.           {
  4556.         /* happens only with -r and not -d */
  4557.         /* write out a common definition */
  4558.         nl.n_type = N_UNDF | N_EXT;
  4559.         nl.n_value = sp->max_common_size;
  4560.           }
  4561.         else if (!sp->defined)          /* undefined -- legit only if -r */
  4562.           {
  4563.         nl.n_type = N_UNDF | N_EXT;
  4564.         nl.n_value = 0;
  4565.           }
  4566.         else
  4567.           fatal ("internal error: %s defined in mysterious way", sp->name);
  4568.  
  4569.         /* Allocate string table space for the symbol name.  */
  4570.  
  4571.         nl.n_un.n_strx = assign_string_table_index (sp->name);
  4572.  
  4573.         /* Output to the buffer and count it.  */
  4574.  
  4575.         *bufp++ = nl;
  4576.         syms_written++;
  4577.         if (nl.n_type == (N_INDR | N_EXT))
  4578.           {
  4579.         struct nlist xtra_ref;
  4580.         xtra_ref.n_type == N_EXT | N_UNDF;
  4581.         xtra_ref.n_un.n_strx
  4582.           = assign_string_table_index (((symbol *) sp->value)->name);
  4583.         xtra_ref.n_other = 0;
  4584.         xtra_ref.n_desc = 0;
  4585.         xtra_ref.n_value = 0;
  4586.         *bufp++ = xtra_ref;
  4587.         syms_written++;
  4588.           }
  4589.       }
  4590.       }
  4591.  
  4592.   /* Output the buffer full of `struct nlist's.  */
  4593.  
  4594.   lseek (outdesc, symbol_table_offset + symbol_table_len, 0);
  4595. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4596.   {
  4597.     int i;
  4598.  
  4599.     for (i = 0; i < bufp - buf; ++i)
  4600.       {
  4601.         fix_byte_order(&buf[i].n_un.n_name, sizeof(buf->n_un.n_name));
  4602.     fix_byte_order(&buf[i].n_desc, sizeof(buf->n_desc));
  4603.     fix_byte_order(&buf[i].n_value, sizeof(buf->n_value));
  4604.       }
  4605.   }
  4606. #endif
  4607.   mywrite (buf, sizeof (struct nlist), bufp - buf, outdesc);
  4608.   symbol_table_len += sizeof (struct nlist) * (bufp - buf);
  4609.  
  4610.   if (syms_written != nsyms)
  4611.     fatal ("internal error: wrong number of symbols written into output file", 0);
  4612.  
  4613.   if (symbol_table_offset + symbol_table_len != string_table_offset)
  4614.     fatal ("internal error: inconsistent symbol table length", 0);
  4615.  
  4616.   /* Now the total string table size is known, so write it.
  4617.      We are already positioned at the right place in the file.  */
  4618.  
  4619. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4620.   fix_byte_order(&strtab_size, sizeof(strtab_size));
  4621. #endif
  4622.  
  4623.   mywrite (&strtab_size, sizeof (int), 1, outdesc);  /* we're at right place */
  4624.  
  4625.   /* Write the strings for the global symbols.  */
  4626.  
  4627.   write_string_table ();
  4628. }
  4629.  
  4630. /* Write the local and debugger symbols of file ENTRY.
  4631.    Increment *SYMS_WRITTEN_ADDR for each symbol that is written.  */
  4632.  
  4633. /* Note that we do not combine identical names of local symbols.
  4634.    dbx or gdb would be confused if we did that.  */
  4635.  
  4636. void
  4637. write_file_syms (entry, syms_written_addr)
  4638.      struct file_entry *entry;
  4639.      int *syms_written_addr;
  4640. {
  4641.   register struct nlist *p = entry->symbols;
  4642.   register struct nlist *end = p + entry->header.a_syms / sizeof (struct nlist);
  4643.  
  4644.   /* Buffer to accumulate all the syms before writing them.
  4645.      It has one extra slot for the local symbol we generate here.  */
  4646.   struct nlist *buf
  4647.     = (struct nlist *) alloca (entry->header.a_syms + sizeof (struct nlist));
  4648.   register struct nlist *bufp = buf;
  4649.  
  4650.   /* Upper bound on number of syms to be written here.  */
  4651.   int max_syms = (entry->header.a_syms / sizeof (struct nlist)) + 1;
  4652.  
  4653.   /* Make tables that record, for each symbol, its name and its name's length.
  4654.      The elements are filled in by `assign_string_table_index'.  */
  4655.  
  4656.   strtab_vector = (char **) alloca (max_syms * sizeof (char *));
  4657.   strtab_lens = (int *) alloca (max_syms * sizeof (int));
  4658.   strtab_index = 0;
  4659.  
  4660.   /* Generate a local symbol for the start of this file's text.  */
  4661.  
  4662.   if (discard_locals != DISCARD_ALL)
  4663.     {
  4664.       struct nlist nl;
  4665.  
  4666. #if TARGET==TARGET_SEQUENT      
  4667.       nl.n_type = N_FN;
  4668. #else      
  4669.       nl.n_type = N_TEXT;
  4670. #endif
  4671.       nl.n_un.n_strx = assign_string_table_index (entry->local_sym_name);
  4672.       nl.n_value = entry->text_start_address;
  4673.       nl.n_desc = 0;
  4674.       nl.n_other = 0;
  4675.       *bufp++ = nl;
  4676.       (*syms_written_addr)++;
  4677.       entry->local_syms_offset = *syms_written_addr * sizeof (struct nlist);
  4678.     }
  4679.  
  4680.   /* Read the file's string table.  */
  4681.  
  4682.   entry->strings = (char *) alloca (entry->string_size);
  4683.   read_entry_strings (file_open (entry), entry);
  4684.  
  4685.   for (; p < end; p++)
  4686.     {
  4687.       register int type = p->n_type;
  4688.       register int write = 0;
  4689.  
  4690.       /* WRITE gets 1 for a non-global symbol that should be written.  */
  4691.  
  4692.  
  4693.       if (SET_ELEMENT_P (type))    /* This occurs even if global.  These */
  4694.                 /* types of symbols are never written */
  4695.                 /* globally, though they are stored */
  4696.                 /* globally.  */
  4697.         write = relocatable_output;
  4698.       else if (!(type & (N_STAB | N_EXT)))
  4699.         /* ordinary local symbol */
  4700.     write = ((discard_locals != DISCARD_ALL)
  4701.          && !(discard_locals == DISCARD_L &&
  4702.               (p->n_un.n_strx + entry->strings)[0] == LPREFIX)
  4703.          && type != N_WARNING);
  4704.       else if (!(type & N_EXT))
  4705.     /* debugger symbol */
  4706.         write = (strip_symbols == STRIP_NONE);
  4707.  
  4708.       if (write)
  4709.     {
  4710.       /* If this symbol has a name,
  4711.          allocate space for it in the output string table.  */
  4712.  
  4713.       if (p->n_un.n_strx)
  4714.         p->n_un.n_strx = assign_string_table_index (p->n_un.n_strx
  4715.                             + entry->strings);
  4716.  
  4717.       /* Output this symbol to the buffer and count it.  */
  4718.  
  4719.       *bufp++ = *p;
  4720.       (*syms_written_addr)++;
  4721.     }
  4722.     }
  4723.  
  4724.   /* All the symbols are now in BUF; write them.  */
  4725.  
  4726.   lseek (outdesc, symbol_table_offset + symbol_table_len, 0);
  4727. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4728.   {
  4729.     int i;
  4730.  
  4731.     for (i = 0; i < bufp - buf; ++i)
  4732.       {
  4733.     fix_byte_order(&buf[i].n_un.n_name, sizeof(buf->n_un.n_name));
  4734.     fix_byte_order(&buf[i].n_desc, sizeof(buf->n_desc));
  4735.     fix_byte_order(&buf[i].n_value, sizeof(buf->n_value));
  4736.       }
  4737.   }
  4738. #endif
  4739.   mywrite (buf, sizeof (struct nlist), bufp - buf, outdesc);
  4740.   symbol_table_len += sizeof (struct nlist) * (bufp - buf);
  4741.  
  4742.   /* Write the string-table data for the symbols just written,
  4743.      using the data in vectors `strtab_vector' and `strtab_lens'.  */
  4744.  
  4745.   write_string_table ();
  4746.   entry->strings = 0;        /* Since it will dissapear anyway.  */
  4747. }
  4748.  
  4749. /* Copy any GDB symbol segments from the input files to the output file.
  4750.    The contents of the symbol segment is copied without change
  4751.    except that we store some information into the beginning of it.  */
  4752.  
  4753. void write_file_symseg ();
  4754.  
  4755. void
  4756. write_symsegs ()
  4757. {
  4758.   each_file (write_file_symseg, 0);
  4759. }
  4760.  
  4761. void
  4762. write_file_symseg (entry)
  4763.      struct file_entry *entry;
  4764. {
  4765.   char buffer[4096];
  4766.   struct symbol_root root;
  4767.   int indesc;
  4768.   int len;
  4769.  
  4770.   if (entry->symseg_offset == 0)
  4771.     return;
  4772.  
  4773.   /* This entry has a symbol segment.  Read the root of the segment.  */
  4774.  
  4775.   indesc = file_open (entry);
  4776.   lseek (indesc, entry->symseg_offset + entry->starting_offset, 0);
  4777.   if (sizeof root != read (indesc, &root, sizeof root))
  4778.     fatal_with_file ("premature end of file in symbol segment of ", entry);
  4779.  
  4780. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4781.   fix_symbol_root_byte_order(&root);
  4782. #endif
  4783.  
  4784.   /* Store some relocation info into the root.  */
  4785.  
  4786.   root.ldsymoff = entry->local_syms_offset;
  4787.   root.textrel = entry->text_start_address;
  4788.   root.datarel = entry->data_start_address - entry->header.a_text;
  4789.   root.bssrel = entry->bss_start_address
  4790.     - entry->header.a_text - entry->header.a_data;
  4791.   root.databeg = entry->data_start_address - root.datarel;
  4792.   root.bssbeg = entry->bss_start_address - root.bssrel;
  4793.  
  4794.   /* Write the modified root into the output file.  */
  4795.  
  4796. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  4797.   fix_symbol_root_byte_order(&root);
  4798. #endif
  4799.   mywrite (&root, sizeof root, 1, outdesc);
  4800.  
  4801.   /* Copy the rest of the symbol segment unchanged.  */
  4802.  
  4803.   if (entry->superfile)
  4804.     {
  4805.       /* Library member: number of bytes to copy is determined
  4806.      from the member's total size.  */
  4807.  
  4808.       int total = entry->total_size - entry->symseg_offset - sizeof root;
  4809.  
  4810.       while (total > 0)
  4811.     {
  4812.       len = read (indesc, buffer, min (sizeof buffer, total));
  4813.  
  4814.       if (len != min (sizeof buffer, total))
  4815.         fatal_with_file ("premature end of file in symbol segment of ", entry);
  4816.       total -= len;
  4817.       mywrite (buffer, len, 1, outdesc);
  4818.     }
  4819.     }
  4820.   else
  4821.     {
  4822.       /* A separate file: copy until end of file.  */
  4823.  
  4824.       while (len = read (indesc, buffer, sizeof buffer))
  4825.     {
  4826.       mywrite (buffer, len, 1, outdesc);
  4827.       if (len < sizeof buffer)
  4828.         break;
  4829.     }
  4830.     }
  4831.  
  4832.   file_close ();
  4833. }
  4834.  
  4835. /* Create the symbol table entries for `etext', `edata' and `end'.  */
  4836.  
  4837. void
  4838. symtab_init ()
  4839. {
  4840. #ifndef nounderscore
  4841.   edata_symbol = getsym ("_edata");
  4842.   etext_symbol = getsym ("_etext");
  4843.   end_symbol = getsym ("_end");
  4844. #else
  4845.   edata_symbol = getsym ("edata");
  4846.   etext_symbol = getsym ("etext");
  4847.   end_symbol = getsym ("end");
  4848. #endif
  4849.  
  4850. #if TARGET_MACHINE==TARGET_SUN4 || TARGET_MACHINE==TARGET_SUN3 || TARGET_MACHINE==TARGET_SUN2
  4851.   {
  4852.     symbol *dynamic_symbol = getsym ("__DYNAMIC");
  4853.     dynamic_symbol->defined = N_ABS | N_EXT;
  4854.     dynamic_symbol->referenced = 1;
  4855.     dynamic_symbol->value = 0;
  4856.   }
  4857. #endif
  4858. #if TARGET_MACHINE==TARGET_SEQUENT
  4859.   {
  4860.     symbol *_387_flt_symbol = getsym ("_387_flt");
  4861.     _387_flt_symbol->defined = N_ABS | N_EXT;
  4862.     _387_flt_symbol->referenced = 1;
  4863.     _387_flt_symbol->value = 0;
  4864.   }
  4865. #endif
  4866.  
  4867.   edata_symbol->defined = N_DATA | N_EXT;
  4868.   etext_symbol->defined = N_TEXT | N_EXT;
  4869.   end_symbol->defined = N_BSS | N_EXT;
  4870.  
  4871.   edata_symbol->referenced = 1;
  4872.   etext_symbol->referenced = 1;
  4873.   end_symbol->referenced = 1;
  4874. }
  4875.  
  4876. /* Compute the hash code for symbol name KEY.  */
  4877.  
  4878. int
  4879. hash_string (key)
  4880.      char *key;
  4881. {
  4882.   register char *cp;
  4883.   register int k;
  4884.  
  4885.   cp = key;
  4886.   k = 0;
  4887.   while (*cp)
  4888.     k = (((k << 1) + (k >> 14)) ^ (*cp++)) & 0x3fff;
  4889.  
  4890.   return k;
  4891. }
  4892.  
  4893. /* Get the symbol table entry for the global symbol named KEY.
  4894.    Create one if there is none.  */
  4895.  
  4896. symbol *
  4897. getsym (key)
  4898.      char *key;
  4899. {
  4900.   register int hashval;
  4901.   register symbol *bp;
  4902.  
  4903.   /* Determine the proper bucket.  */
  4904.  
  4905.   hashval = hash_string (key) % TABSIZE;
  4906.  
  4907.   /* Search the bucket.  */
  4908.  
  4909.   for (bp = symtab[hashval]; bp; bp = bp->link)
  4910.     if (! strcmp (key, bp->name))
  4911.       return bp;
  4912.  
  4913.   /* Nothing was found; create a new symbol table entry.  */
  4914.  
  4915.   bp = (symbol *) xmalloc (sizeof (symbol));
  4916.   bp->refs = 0;
  4917.   bp->name = (char *) xmalloc (strlen (key) + 1);
  4918.   strcpy (bp->name, key);
  4919.   bp->defined = 0;
  4920.   bp->referenced = 0;
  4921.   bp->trace = 0;
  4922.   bp->value = 0;
  4923.   bp->max_common_size = 0;
  4924.   bp->warning = 0;
  4925.   bp->undef_refs = 0;
  4926.   bp->multiply_defined = 0;
  4927.  
  4928.   /* Add the entry to the bucket.  */
  4929.  
  4930.   bp->link = symtab[hashval];
  4931.   symtab[hashval] = bp;
  4932.  
  4933.   ++num_hash_tab_syms;
  4934.  
  4935.   return bp;
  4936. }
  4937.  
  4938. /* Like `getsym' but return 0 if the symbol is not already known.  */
  4939.  
  4940. symbol *
  4941. getsym_soft (key)
  4942.      char *key;
  4943. {
  4944.   register int hashval;
  4945.   register symbol *bp;
  4946.  
  4947.   /* Determine which bucket.  */
  4948.  
  4949.   hashval = hash_string (key) % TABSIZE;
  4950.  
  4951.   /* Search the bucket.  */
  4952.  
  4953.   for (bp = symtab[hashval]; bp; bp = bp->link)
  4954.     if (! strcmp (key, bp->name))
  4955.       return bp;
  4956.  
  4957.   return 0;
  4958. }
  4959.  
  4960. /* Report a fatal error.
  4961.    STRING is a printf format string and ARG is one arg for it.  */
  4962.  
  4963. void
  4964. fatal (string, arg)
  4965.      char *string, *arg;
  4966. {
  4967.   fprintf (stderr, "ld: ");
  4968.   fprintf (stderr, string, arg);
  4969.   fprintf (stderr, "\n");
  4970.   exit (1);
  4971. }
  4972.  
  4973. /* Report a fatal error.  The error message is STRING
  4974.    followed by the filename of ENTRY.  */
  4975.  
  4976. void
  4977. fatal_with_file (string, entry)
  4978.      char *string;
  4979.      struct file_entry *entry;
  4980. {
  4981.   fprintf (stderr, "ld: ");
  4982.   fprintf (stderr, string);
  4983.   print_file_name (entry, stderr);
  4984.   fprintf (stderr, "\n");
  4985.   exit (1);
  4986. }
  4987.  
  4988. /* Report a fatal error using the message for the last failed system call,
  4989.    followed by the string NAME.  */
  4990.  
  4991. void
  4992. perror_name (name)
  4993.      char *name;
  4994. {
  4995.   extern int errno, sys_nerr;
  4996.   extern char *sys_errlist[];
  4997.   char *s;
  4998.  
  4999.   if (errno < sys_nerr)
  5000.     s = concat ("", sys_errlist[errno], " for %s");
  5001.   else
  5002.     s = "cannot open %s";
  5003.   fatal (s, name);
  5004. }
  5005.  
  5006. /* Report a fatal error using the message for the last failed system call,
  5007.    followed by the name of file ENTRY.  */
  5008.  
  5009. void
  5010. perror_file (entry)
  5011.      struct file_entry *entry;
  5012. {
  5013.   extern int errno, sys_nerr;
  5014.   extern char *sys_errlist[];
  5015.   char *s;
  5016.  
  5017.   if (errno < sys_nerr)
  5018.     s = concat ("", sys_errlist[errno], " for ");
  5019.   else
  5020.     s = "cannot open ";
  5021.   fatal_with_file (s, entry);
  5022. }
  5023.  
  5024. /* Report a nonfatal error.
  5025.    STRING is a format for printf, and ARG1 ... ARG3 are args for it.  */
  5026.  
  5027. void
  5028. error (string, arg1, arg2, arg3)
  5029.      char *string, *arg1, *arg2, *arg3;
  5030. {
  5031.   fprintf (stderr, "%s: ", progname);
  5032.   fprintf (stderr, string, arg1, arg2, arg3);
  5033.   fprintf (stderr, "\n");
  5034. }
  5035.  
  5036.  
  5037. /* Output COUNT*ELTSIZE bytes of data at BUF
  5038.    to the descriptor DESC.  */
  5039.  
  5040. void
  5041. mywrite (buf, count, eltsize, desc)
  5042.      char *buf;
  5043.      int count;
  5044.      int eltsize;
  5045.      int desc;
  5046. {
  5047.   register int val;
  5048.   register int bytes = count * eltsize;
  5049.  
  5050.   while (bytes > 0)
  5051.     {
  5052.       val = write (desc, buf, bytes);
  5053.       if (val <= 0)
  5054.     perror_name (output_filename);
  5055.       buf += val;
  5056.       bytes -= val;
  5057.     }
  5058. }
  5059.  
  5060. /* Output PADDING zero-bytes to descriptor OUTDESC.
  5061.    PADDING may be negative; in that case, do nothing.  */
  5062.  
  5063. void
  5064. padfile (padding, outdesc)
  5065.      int padding;
  5066.      int outdesc;
  5067. {
  5068.   register char *buf;
  5069.   if (padding <= 0)
  5070.     return;
  5071.  
  5072.   buf = (char *) alloca (padding);
  5073.   bzero (buf, padding);
  5074.   mywrite (buf, padding, 1, outdesc);
  5075. }
  5076.  
  5077. /* Return a newly-allocated string
  5078.    whose contents concatenate the strings S1, S2, S3.  */
  5079.  
  5080. char *
  5081. concat (s1, s2, s3)
  5082.      char *s1, *s2, *s3;
  5083. {
  5084.   register int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
  5085.   register char *result = (char *) xmalloc (len1 + len2 + len3 + 1);
  5086.  
  5087.   strcpy (result, s1);
  5088.   strcpy (result + len1, s2);
  5089.   strcpy (result + len1 + len2, s3);
  5090.   result[len1 + len2 + len3] = 0;
  5091.  
  5092.   return result;
  5093. }
  5094.  
  5095. /* Parse the string ARG using scanf format FORMAT, and return the result.
  5096.    If it does not parse, report fatal error
  5097.    generating the error message using format string ERROR and ARG as arg.  */
  5098.  
  5099. int
  5100. parse (arg, format, error)
  5101.      char *arg, *format;
  5102. {
  5103.   int x;
  5104.   if (1 != sscanf (arg, format, &x))
  5105.     fatal (error, arg);
  5106.   return x;
  5107. }
  5108.  
  5109. /* Like malloc but get fatal error if memory is exhausted.  */
  5110.  
  5111. int
  5112. xmalloc (size)
  5113.      int size;
  5114. {
  5115.   register int result = malloc (size);
  5116.   if (!result)
  5117.     fatal ("virtual memory exhausted", 0);
  5118.   return result;
  5119. }
  5120.  
  5121. /* Like realloc but get fatal error if memory is exhausted.  */
  5122.  
  5123. int
  5124. xrealloc (ptr, size)
  5125.      char *ptr;
  5126.      int size;
  5127. {
  5128.   register int result = realloc (ptr, size);
  5129.   if (!result)
  5130.     fatal ("virtual memory exhausted", 0);
  5131.   return result;
  5132. }
  5133.  
  5134. #ifdef USG
  5135.  
  5136. void
  5137. bzero (p, n)
  5138.      char *p;
  5139. {
  5140.   memset (p, 0, n);
  5141. }
  5142.  
  5143. void
  5144. bcopy (from, to, n)
  5145.      char *from, *to;
  5146. {
  5147.   memcpy (to, from, n);
  5148. }
  5149.  
  5150. getpagesize ()
  5151. {
  5152.   return (4096);
  5153. }
  5154.  
  5155. #endif
  5156.  
  5157.  
  5158. #if HOST_BYTE_ORDER != TARGET_BYTE_ORDER
  5159.  
  5160. static void
  5161. fix_byte_order(p, n)
  5162.     char *p;
  5163.     int n;
  5164. {
  5165.     char t;
  5166.  
  5167.     switch (n) {
  5168.  
  5169.     case 1:
  5170.     return;
  5171.  
  5172.     case 2:
  5173.     t = p[0];
  5174.     p[0] = p[1];
  5175.     p[1] = t;
  5176.     return;
  5177.  
  5178.     case 4:
  5179.     t = p[0];
  5180.     p[0] = p[3];
  5181.     p[3] = t;
  5182.     t = p[1];
  5183.     p[1] = p[2];
  5184.     p[2] = t;
  5185.     return;
  5186.  
  5187.     default:
  5188.     fatal("Internal Error in fix_byte_order, n = %d\n", 0);
  5189.     }
  5190. }
  5191.  
  5192. static void
  5193. fix_exec_header_byte_order(execP)
  5194.     struct exec *execP;
  5195. {
  5196.  
  5197. #if TARGET_MACHINE==TARGET_SUN4
  5198.     if (N_BADMAG(*execP)) {
  5199.     u_char c = * (u_char *) execP;
  5200.     execP->a_dynamic = c & 1;
  5201.     execP->a_toolversion = c >> 1;
  5202.     } else {
  5203.     u_char c = execP->a_toolversion | (execP->a_dynamic << 7);
  5204.     * (u_char *) execP = c;
  5205.     }
  5206. #elif TARGET_MACHINE!=TARGET_SEQUENT
  5207.     fix_byte_order(&execP->a_machtype, sizeof(execP->a_machtype));
  5208. #endif
  5209.     fix_byte_order(&execP->a_magic,    sizeof(execP->a_magic));
  5210.     fix_byte_order(&execP->a_text,     sizeof(execP->a_text));
  5211.     fix_byte_order(&execP->a_data,     sizeof(execP->a_data));
  5212.     fix_byte_order(&execP->a_bss,      sizeof(execP->a_bss));
  5213.     fix_byte_order(&execP->a_syms,     sizeof(execP->a_syms));
  5214.     fix_byte_order(&execP->a_entry,    sizeof(execP->a_entry));
  5215.     fix_byte_order(&execP->a_trsize,   sizeof(execP->a_trsize));
  5216.     fix_byte_order(&execP->a_drsize,   sizeof(execP->a_drsize));
  5217.     return;
  5218. }
  5219.  
  5220. static void
  5221. fix_symbol_byte_order(p, size)
  5222.     struct nlist *p;
  5223.     int size;
  5224. {
  5225.     int n;
  5226.  
  5227.     for (n = size / sizeof(*p); --n >= 0; ++p) {
  5228.     fix_byte_order(&p->n_un, sizeof(p->n_un));
  5229.     fix_byte_order(&p->n_desc, sizeof(p->n_desc));
  5230.     fix_byte_order(&p->n_value, sizeof(p->n_value));
  5231.     }
  5232.     return;
  5233. }
  5234.  
  5235. static void
  5236. target_to_host_reloc_byte_order(relocP, nrelocs)
  5237.     struct relocation_info *relocP;
  5238.     int nrelocs;
  5239. {
  5240.     u_char c[4];
  5241.  
  5242. #if TARGET_BYTE_ORDER==BIG_ENDIAN && HOST_BYTE_ORDER==LITTLE_ENDIAN
  5243.     for (; --nrelocs >= 0; ++relocP) {
  5244.     fix_byte_order(&relocP->r_address, sizeof(relocP->r_address));
  5245.     c[0] = ((u_char *) relocP)[4];
  5246.     c[1] = ((u_char *) relocP)[5];
  5247.     c[2] = ((u_char *) relocP)[6];
  5248.     c[3] = ((u_char *) relocP)[7];
  5249.     ((u_long *) relocP)[1] = 0;
  5250. #if TARGET_MACHINE==TARGET_SUN4
  5251.     relocP->r_index = (c[0] << 16) | (c[1] << 8) | c[2];
  5252.     relocP->r_type = (enum reloc_type) (c[3] & 0x1f);
  5253.     relocP->r_extern = (c[3] & 0x80) >> 7;
  5254.     fix_byte_order(&relocP->r_addend, sizeof(relocP->r_addend));
  5255. #else
  5256.     relocP->r_symbolnum = (c[0] << 16) | (c[1] << 8) | c[2];
  5257.     relocP->r_pcrel = (c[3] >> 7) & 1;
  5258.     relocP->r_length = (c[3] >> 5) & 3;
  5259.     relocP->r_extern = (c[3] >> 4) & 1;
  5260. #endif
  5261.     }
  5262. #endif
  5263.     return;
  5264. }
  5265.  
  5266. static void
  5267. host_to_target_reloc_byte_order(relocP, nrelocs)
  5268.     struct relocation_info *relocP;
  5269.     int nrelocs;
  5270. {
  5271.     u_char c[4];
  5272.  
  5273. #if TARGET_BYTE_ORDER==BIG_ENDIAN && HOST_BYTE_ORDER==LITTLE_ENDIAN
  5274.     for (; --nrelocs >= 0; ++relocP) {
  5275.     fix_byte_order(&relocP->r_address, sizeof(relocP->r_address));
  5276. #if TARGET_MACHINE==TARGET_SUN4
  5277.     c[0] = (relocP->r_index >> 16);
  5278.     c[1] = (relocP->r_index >> 8);
  5279.     c[2] = relocP->r_index;
  5280.     c[3] = (u_char) relocP->r_type | (relocP->r_extern << 7);
  5281.     fix_byte_order(&relocP->r_addend, sizeof(relocP->r_addend));
  5282. #else
  5283.     c[0] = (relocP->r_symbolnum >> 16);
  5284.     c[1] = (relocP->r_symbolnum >> 8);
  5285.     c[2] = relocP->r_symbolnum;
  5286.     c[3] = (relocP->r_pcrel << 7) |
  5287.         (relocP->r_length << 5) | (relocP->r_extern << 4);
  5288. #endif
  5289.     ((u_char *) relocP)[4] = c[0];
  5290.     ((u_char *) relocP)[5] = c[1];
  5291.     ((u_char *) relocP)[6] = c[2];
  5292.     ((u_char *) relocP)[7] = c[3];
  5293.     }
  5294. #endif
  5295.     return;
  5296. }
  5297.  
  5298. static void
  5299. fix_symbol_root_byte_order(p)
  5300.     struct symbol_root *p;
  5301. {
  5302.  
  5303.     fix_byte_order(&p->format, sizeof(p->format));
  5304.     fix_byte_order(&p->length, sizeof(p->length));
  5305.     fix_byte_order(&p->ldsymoff, sizeof(p->ldsymoff));
  5306.     fix_byte_order(&p->textrel, sizeof(p->textrel));
  5307.     fix_byte_order(&p->datarel, sizeof(p->datarel));
  5308.     fix_byte_order(&p->bssrel, sizeof(p->bssrel));
  5309.     fix_byte_order(&p->filename, sizeof(p->filename));
  5310.     fix_byte_order(&p->filedir, sizeof(p->filedir));
  5311.     fix_byte_order(&p->blockvector, sizeof(p->blockvector));
  5312.     fix_byte_order(&p->typevector, sizeof(p->typevector));
  5313.     fix_byte_order(&p->language, sizeof(p->language));
  5314.     fix_byte_order(&p->version, sizeof(p->version));
  5315.     fix_byte_order(&p->compilation, sizeof(p->compilation));
  5316.     fix_byte_order(&p->databeg, sizeof(p->databeg));
  5317.     fix_byte_order(&p->bssbeg, sizeof(p->bssbeg));
  5318.     fix_byte_order(&p->sourcevector, sizeof(p->sourcevector));
  5319.     return;
  5320. }
  5321.  
  5322. #endif
  5323.  
  5324.